<?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: ISE 2.6 where to put mac addresses in Network Access Control</title>
    <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080358#M560154</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I had an ISE training 6 months ago and the instructor told us that adding mac addresses is not that easy.&lt;/P&gt;&lt;P&gt;First of all, a new device must be connected to the network in order to appear in the endpoint visibility context.&lt;/P&gt;&lt;P&gt;After that, you can add the mac address since ISE knows it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm looking for a possibility to add mac addresses beforehand. manually. Is that possible?&lt;/P&gt;</description>
    <pubDate>Wed, 06 May 2020 09:51:41 GMT</pubDate>
    <dc:creator>as00001111</dc:creator>
    <dc:date>2020-05-06T09:51:41Z</dc:date>
    <item>
      <title>ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078893#M560082</link>
      <description>&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;right now we are using ACS 5.8 for dot1x and mab.&lt;/P&gt;&lt;P&gt;I want to replace acs with ise 2.6&lt;/P&gt;&lt;P&gt;in acs -&amp;gt; Users and Identity Stores -&amp;gt; Internal Identity Stores -&amp;gt; Users are all mac addresses for mab. all mac addresses are manually added.&lt;/P&gt;&lt;P&gt;Where can I add those mac addresses in ISE?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 11:48:23 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078893#M560082</guid>
      <dc:creator>as00001111</dc:creator>
      <dc:date>2020-05-04T11:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078901#M560084</link>
      <description>In ISE you manage internal endpoint identity groups here: Administration-&amp;gt;Identity Management-&amp;gt;Groups-&amp;gt;Endpoint Identity Groups.  You also have the ability to rely on adding them via REST APIs or via context visibility-&amp;gt;endpoints (add).  HTH!</description>
      <pubDate>Mon, 04 May 2020 11:56:16 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078901#M560084</guid>
      <dc:creator>Mike.Cifelli</dc:creator>
      <dc:date>2020-05-04T11:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078972#M560101</link>
      <description>You can add them under Context Visibility &amp;gt; Endpoints.&lt;BR /&gt;</description>
      <pubDate>Mon, 04 May 2020 13:37:20 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078972#M560101</guid>
      <dc:creator>Surendra</dc:creator>
      <dc:date>2020-05-04T13:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078989#M560103</link>
      <description>&lt;P&gt;Here is a quick script you can use for new endpoint bulk adds.&amp;nbsp; Note that this script will not work for existing MACs in ISE db, you will need to identify your unique group id and update url and user/pass info:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;#!/usr/bin/python&lt;BR /&gt;import requests&lt;BR /&gt;import warnings&lt;BR /&gt;&lt;BR /&gt;#ignore invalid cert warnings&lt;BR /&gt;warnings.filterwarnings("ignore")&lt;BR /&gt;&lt;BR /&gt;maclist = open('MAC.txt','r')&lt;BR /&gt;address = maclist.readlines()&lt;BR /&gt;&lt;BR /&gt;for mac in address:&lt;BR /&gt;    API_DEVICE = "https://&amp;lt;your ise pan&amp;gt;:9060/ers/config/endpoint/"&lt;BR /&gt;    API_ERS_USER = "&amp;lt;user&amp;gt;","&amp;lt;password&amp;gt;"&lt;BR /&gt;    API_DATA = ({&lt;BR /&gt;        "ERSEndPoint" : {&lt;BR /&gt;        "name" : "Workstation",&lt;BR /&gt;        "mac" : mac,&lt;BR /&gt;        "staticGroupAssignment" : "true",&lt;BR /&gt;        "groupId" : "a1649530-6840-11e9-aa97-0242f38bcc8a",&lt;BR /&gt;        }&lt;BR /&gt;    }&lt;BR /&gt;)&lt;BR /&gt;    r = requests.post(url=API_DEVICE, auth=API_ERS_USER, verify=True, json=API_DATA)&lt;BR /&gt;    print r.reason&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;Finding unique group ip:&lt;/P&gt;
&lt;P&gt;$ curl -k --include --header 'Content-Type:application/json' --header 'Accept: application/json' --user &amp;lt;user&amp;gt;:&amp;lt;pass&amp;gt; --request GET https://&amp;lt;ise pan ip&amp;gt;:9060/ers/config/endpointgroup?filter=name.EQ.&amp;lt;your endpoint group name&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Response will look like:&lt;/P&gt;
&lt;PRE&gt;{&lt;BR /&gt;    "SearchResult" : {&lt;BR /&gt;        "total" : 1,&lt;BR /&gt;        "resources" : [ {&lt;BR /&gt;            "id" : "a1649530-6840-11e9-aa97-0242f38bcc8a",&lt;BR /&gt;            "name" : "&amp;lt;your group id&amp;gt;",&lt;BR /&gt;            "description" : "xxxx",&lt;BR /&gt;            "link" : {&lt;BR /&gt;                "rel" : "self",&lt;BR /&gt;                "href" : "https://&amp;lt;ise pan ip&amp;gt;:9060/ers/config/endpointgroup/a1649530-6840-11e9-aa97-0242f38bcc8a",&lt;BR /&gt;                "type" : "application/json"&lt;BR /&gt;            }&lt;BR /&gt;        } ]&lt;BR /&gt;    }&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;HTH &amp;amp; Good luck!&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 14:07:59 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4078989#M560103</guid>
      <dc:creator>Mike.Cifelli</dc:creator>
      <dc:date>2020-05-04T14:07:59Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080358#M560154</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I had an ISE training 6 months ago and the instructor told us that adding mac addresses is not that easy.&lt;/P&gt;&lt;P&gt;First of all, a new device must be connected to the network in order to appear in the endpoint visibility context.&lt;/P&gt;&lt;P&gt;After that, you can add the mac address since ISE knows it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm looking for a possibility to add mac addresses beforehand. manually. Is that possible?&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 09:51:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080358#M560154</guid>
      <dc:creator>as00001111</dc:creator>
      <dc:date>2020-05-06T09:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080359#M560155</link>
      <description>&lt;DIV class="lia-message-body lia-component-message-view-widget-body lia-component-body-signature-highlight-escalation lia-component-message-view-widget-body-signature-highlight-escalation"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;I had an ISE training 6 months ago and the instructor told us that adding mac addresses is not that easy.&lt;/P&gt;&lt;P&gt;First of all, a new device must be connected to the network in order to appear in the endpoint visibility context.&lt;/P&gt;&lt;P&gt;After that, you can add the mac address since ISE knows it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I'm looking for a possibility to add mac addresses beforehand. manually. Is that possible?&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 06 May 2020 09:52:45 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080359#M560155</guid>
      <dc:creator>as00001111</dc:creator>
      <dc:date>2020-05-06T09:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080400#M560159</link>
      <description>&lt;P&gt;As people have said there are several places to add MAC addresses into ISE.&amp;nbsp; When I am educating customers on ISE I always refer them to Context Visibility-&amp;gt;Endpoints.&amp;nbsp; This screen allows you to easily import from a CSV and will provide you a template.&amp;nbsp; In addition if you are adding a single MAC address or editing an existing MAC address it is the only screen I know of that allows the description value to be input.&amp;nbsp; This is key for self-documenting MAC addresses and why they were added to a particular whitelist.&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 11:29:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080400#M560159</guid>
      <dc:creator>paul</dc:creator>
      <dc:date>2020-05-06T11:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080441#M560164</link>
      <description>&lt;P&gt;But I'm looking for a possibility to add mac addresses beforehand. manually. Is that possible?&lt;BR /&gt;-As three of us have mentioned, Yes absolutely. When adding new endpoints I personally prefer the rest api way. However, there are easier ways. Both of which include the bulk csv&amp;nbsp;&lt;a href="https://community.cisco.com/t5/user/viewprofilepage/user-id/192011"&gt;@paul&lt;/a&gt;&amp;nbsp;mentioned and then the manual one-by-one way under context visibility.&amp;nbsp; There you can add the MACs and statically assign them to groups and/or a specific profile policy so that way when they get on the network you can already have policies setup to support them.&amp;nbsp; HTH!&lt;/P&gt;</description>
      <pubDate>Wed, 06 May 2020 12:36:18 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4080441#M560164</guid>
      <dc:creator>Mike.Cifelli</dc:creator>
      <dc:date>2020-05-06T12:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: ISE 2.6 where to put mac addresses</title>
      <link>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4083716#M560280</link>
      <description>&lt;P&gt;Your instructor was wrong.&lt;/P&gt;
&lt;P&gt;You can add them under the &lt;STRONG&gt;Context Visibility &amp;gt; Endpoints&lt;/STRONG&gt; menu as many people have said.&lt;/P&gt;
&lt;P&gt;Use the &lt;STRONG&gt;+&lt;/STRONG&gt; :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/74297iB81E647F4A44C16E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or CSV Import option:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 400px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/74298iE4D7DE3F1D346173/image-size/medium?v=v2&amp;amp;px=400" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Use the attached CSV file as an example if you like.&lt;/P&gt;
&lt;P&gt;When you add them manually, you simply will not have any IP address or authentication information for them (yet):&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 955px;"&gt;&lt;img src="https://community.cisco.com/t5/image/serverpage/image-id/74299iC59AB78770E679E9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 May 2020 00:57:09 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-access-control/ise-2-6-where-to-put-mac-addresses/m-p/4083716#M560280</guid>
      <dc:creator>thomas</dc:creator>
      <dc:date>2020-05-12T00:57:09Z</dc:date>
    </item>
  </channel>
</rss>

