<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI. in Application Centric Infrastructure</title>
    <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416381#M10611</link>
    <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/885416"&gt;@vv0bbLeS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Using class fvIfConn is definitely on the right track, but keeping in mind that the question is:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"H&lt;/SPAN&gt;&lt;SPAN&gt;ow can i find that an interface is statically bound with&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;how many EPGs&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;in Cisco ACI?"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So the answer needs to be a number!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So - now&amp;nbsp; standing on the shoulders of giants - I'd like to offer&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/281813"&gt;@schnkumar331&lt;/a&gt;&amp;nbsp;the following solution:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;moquery -c fvIfConn | grep &lt;FONT color="#FF0000"&gt;epg-&lt;/FONT&gt; | grep node-291 | egrep &lt;FONT color="#FF0000"&gt;-c&lt;/FONT&gt; eth1/3] &lt;/PRE&gt;&lt;P&gt;You'll see it is the same as&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/885416"&gt;@vv0bbLeS&lt;/a&gt;&amp;nbsp;' answer but&lt;SPAN&gt;&amp;nbsp;since the focus is "EPGs", I've replaced &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;dn&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;with &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;epg-&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;and added the &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;-c&lt;/STRONG&gt;&lt;/FONT&gt; flag to the last grep to make it count rather than print!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that the last ] character on the port number is to prevent the grep finding port 30 as well as port 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jun 2021 20:13:46 GMT</pubDate>
    <dc:creator>RedNectar</dc:creator>
    <dc:date>2021-06-10T20:13:46Z</dc:date>
    <item>
      <title>how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4300620#M10081</link>
      <description>&lt;P&gt;Help me to find out the answers.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Mar 2021 10:30:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4300620#M10081</guid>
      <dc:creator>schnkumar331</dc:creator>
      <dc:date>2021-03-03T10:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4415130#M10594</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are 2 ways to check this,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. From the APIC GUI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Use this navigation to go the switch interface which you want to check.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Fabric --&amp;gt; &amp;lt;pod Name&amp;gt; --&amp;gt; Node --&amp;gt; Interfaces --&amp;gt; Physical Interfaces --&amp;gt; &amp;lt;Interface (Eth1/1)&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;in there go to the &lt;STRONG&gt;Deployed EPG&lt;/STRONG&gt; tab. In there you can see the statistically allowed VLANs for that interface&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. From the APIC CLI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the APIC CLI, g to the respective leaf switch interface and enter show run command. in there you can see what are the EPGs which are allowed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;APIC-1# conf t&lt;BR /&gt;APIC-1(config)# leaf 201&lt;BR /&gt;APIC-1(config-leaf)# interface ethernet 1/1&lt;BR /&gt;APIC-1(config-leaf-if)# show run&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If that interface is a Port-Channel use bellow command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;APIC-1# conf t&lt;BR /&gt;APIC-1(config)# leaf 201&lt;BR /&gt;APIC-1(config-leaf)# interface port-channel &amp;lt;port-channel name&amp;gt;&lt;BR /&gt;APIC-1(config-leaf-if)# show run&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if the interface is a VPC use bellow command&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;APIC-1# conf t&lt;BR /&gt;APIC-1(config)# vpc context leaf &amp;lt;leaf node1&amp;gt; &amp;lt;leaf node2&amp;gt;&lt;BR /&gt;APIC-1(config-vpc)# interface vpc &amp;lt;vpc name&amp;gt;&lt;BR /&gt;APIC-1(config-leaf-if)# show run&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this is helpful to answer your question&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Waruna&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 02:57:37 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4415130#M10594</guid>
      <dc:creator>Waruna Rasanga</dc:creator>
      <dc:date>2021-06-09T02:57:37Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4415139#M10595</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/520455"&gt;@Waruna Rasanga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 03:24:34 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4415139#M10595</guid>
      <dc:creator>chathurangaj@kbsl.lk</dc:creator>
      <dc:date>2021-06-09T03:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4415202#M10599</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you know the interface that you want to examine, you can use the following REST GET request,&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;/api/node/mo/topology/pod-1/node-XX/sys/phys-[eth1/1].json?rsp-subtree-include=full-deployment&amp;amp;target-node=all&amp;amp;target-path=l1EthIfToEPg&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 12:05:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4415202#M10599</guid>
      <dc:creator>ecsnnsls</dc:creator>
      <dc:date>2021-06-09T12:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416267#M10607</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;you can use the moquery tool on the APIC CLI, like this:&lt;/P&gt;&lt;P&gt;For example, Port 15 on the Leaf with ID 2232..&lt;/P&gt;&lt;PRE&gt;moquery -c fvStPathAtt | grep dn | grep 'eth1/15' | grep 'node-2232'&lt;/PRE&gt;&lt;P&gt;Best way I found for this &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;&lt;P&gt;Let me know if it helps.&lt;/P&gt;&lt;P&gt;BR&lt;BR /&gt;Juls&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 16:51:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416267#M10607</guid>
      <dc:creator>julian.bendix</dc:creator>
      <dc:date>2021-06-10T16:51:13Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416362#M10609</link>
      <description>&lt;P&gt;I will add on to&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/587150"&gt;@julian.bendix&lt;/a&gt;&amp;nbsp;'s post about moquery, in that I have found that the&amp;nbsp;&lt;STRONG&gt;fvStPathAtt&lt;/STRONG&gt; class does not return FEX ports. You could also use the&amp;nbsp;&lt;STRONG&gt;fvRsCEpToPathEp&lt;/STRONG&gt; class, but that class will only report the interface if the interface is in the "up" state.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The best class I have found for this is to use the&amp;nbsp;&lt;STRONG&gt;fvIfConn&lt;/STRONG&gt; class (Interface Connectivity class), which reports the interface regardless of whether it is "up" or not, and whether it is a FEX port or not:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, to return the EPG's for node 291, port 1/3 :&lt;/P&gt;&lt;PRE&gt;moquery -c fvIfConn | grep dn | grep node-291 | grep eth1/3]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To return the EPG's for node 291, but on FEX 131, port 1/3:&lt;/P&gt;&lt;PRE&gt;moquery -c fvIfConn | grep dn | grep node-291 | grep extchid-131 | grep eth1/3]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Think of the&amp;nbsp;&lt;STRONG&gt;extchid&lt;/STRONG&gt; part as referring to "external chassis id" or "extra chassis id" :- D&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 19:32:12 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416362#M10609</guid>
      <dc:creator>vv0bbLeS</dc:creator>
      <dc:date>2021-06-10T19:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416375#M10610</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/587150"&gt;@julian.bendix&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I thought you may have found something - but for the life of me I can't see the EPG information with the &lt;STRONG&gt;moquery&lt;/STRONG&gt; you suggested.&lt;/P&gt;&lt;P&gt;Also, it seems to miss VPCs.&lt;/P&gt;&lt;P&gt;But let us know if you come up with a better solution &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;&lt;P&gt;Remember: the question is:&lt;/P&gt;&lt;P&gt;"H&lt;SPAN&gt;ow can i find that an interface is statically bound with &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;how many EPGs&lt;/STRONG&gt;&lt;/FONT&gt; in Cisco ACI?"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The answer&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/281813"&gt;@schnkumar331&lt;/a&gt;&amp;nbsp;is looking for is a NUMBER, although&amp;nbsp;I think if we found a command that listed the EPGs for an interface (like suggestion #1 from&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/520455"&gt;@Waruna Rasanga&lt;/a&gt;&amp;nbsp;above) would be close enough (even better perhaps)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 19:53:47 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416375#M10610</guid>
      <dc:creator>RedNectar</dc:creator>
      <dc:date>2021-06-10T19:53:47Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416381#M10611</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/885416"&gt;@vv0bbLeS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Using class fvIfConn is definitely on the right track, but keeping in mind that the question is:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;"H&lt;/SPAN&gt;&lt;SPAN&gt;ow can i find that an interface is statically bound with&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;how many EPGs&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp;in Cisco ACI?"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So the answer needs to be a number!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So - now&amp;nbsp; standing on the shoulders of giants - I'd like to offer&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/281813"&gt;@schnkumar331&lt;/a&gt;&amp;nbsp;the following solution:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;moquery -c fvIfConn | grep &lt;FONT color="#FF0000"&gt;epg-&lt;/FONT&gt; | grep node-291 | egrep &lt;FONT color="#FF0000"&gt;-c&lt;/FONT&gt; eth1/3] &lt;/PRE&gt;&lt;P&gt;You'll see it is the same as&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/885416"&gt;@vv0bbLeS&lt;/a&gt;&amp;nbsp;' answer but&lt;SPAN&gt;&amp;nbsp;since the focus is "EPGs", I've replaced &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;dn&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;with &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;epg-&lt;/FONT&gt;&lt;/STRONG&gt;&amp;nbsp;and added the &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;-c&lt;/STRONG&gt;&lt;/FONT&gt; flag to the last grep to make it count rather than print!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that the last ] character on the port number is to prevent the grep finding port 30 as well as port 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 20:13:46 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416381#M10611</guid>
      <dc:creator>RedNectar</dc:creator>
      <dc:date>2021-06-10T20:13:46Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416390#M10613</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/320756"&gt;@RedNectar&lt;/a&gt;&amp;nbsp;ah yes, good catch! I didn't notice the OP was asking about "how many" :- D&amp;nbsp; Excellent solution using the -c in egrep!&lt;BR /&gt;&lt;BR /&gt;I will add for the OP's benefit that they can also use the word boundary character in egrep, "&lt;STRONG&gt;\b&lt;/STRONG&gt;" to designate the end of a search string. So the end of the above moquery command could also be constructed as&amp;nbsp;&lt;STRONG&gt;egrep -c "eth1/3\b"&lt;/STRONG&gt; which will force extended grep (egrep) to stop matching characters after the&amp;nbsp;&lt;STRONG&gt;3&lt;/STRONG&gt;. I mention this as the word boundary character&amp;nbsp;&lt;STRONG&gt;\b&lt;/STRONG&gt; in egrep is very useful in many other searching tasks that the OP may run across.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 20:27:48 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416390#M10613</guid>
      <dc:creator>vv0bbLeS</dc:creator>
      <dc:date>2021-06-10T20:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416590#M10615</link>
      <description>&lt;P&gt;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/320756"&gt;@RedNectar&lt;/a&gt;&amp;nbsp;&amp;amp;&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/885416"&gt;@vv0bbLeS&lt;/a&gt;&amp;nbsp;.. thank you guys for your super nice additions!! That's awesome.&lt;/P&gt;&lt;P&gt;I'll look into that again too and let you know if I can come up with anything else &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;&lt;P&gt;BR&lt;BR /&gt;Jules&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 06:45:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416590#M10615</guid>
      <dc:creator>julian.bendix</dc:creator>
      <dc:date>2021-06-11T06:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: how can i find that an interface is statically bound with how many EPGs in Cisco ACI.</title>
      <link>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416680#M10617</link>
      <description>&lt;P&gt;This is an amazing solution. I have seen multiple questions regarding this across the forum.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jun 2021 09:23:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/application-centric-infrastructure/how-can-i-find-that-an-interface-is-statically-bound-with-how/m-p/4416680#M10617</guid>
      <dc:creator>ecsnnsls</dc:creator>
      <dc:date>2021-06-11T09:23:20Z</dc:date>
    </item>
  </channel>
</rss>

