<?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 i can enable access list using only mac address to ssh login in ExtremeSwitching (Other)</title>
    <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9168#M196</link>
    <description>Did you enable ssh2 to use the access-profile?&lt;BR /&gt;
enable ssh2 access-profile ssh2-acl&lt;BR /&gt;
&lt;BR /&gt;</description>
    <pubDate>Mon, 17 Jul 2017 13:30:00 GMT</pubDate>
    <dc:creator>AnonymousM</dc:creator>
    <dc:date>2017-07-17T13:30:00Z</dc:date>
    <item>
      <title>How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9152#M180</link>
      <description>Hello &lt;BR /&gt;
&lt;BR /&gt;
i would like to enable access list using mac address of certain PC &lt;BR /&gt;
&lt;BR /&gt;
i am asking because i used the same code of access list using only ip address &lt;BR /&gt;
&lt;BR /&gt;
i used this code&lt;BR /&gt;
&lt;BR /&gt;
entry AllowManagementIP {     if match any {                                        ethernet-source-address F8:A7:BC:E0:D1:AE;         }        then {            permit;        }    }    and it didnt work still eny pc can login using ssh   i did refresh policy cammand still the same problem</description>
      <pubDate>Mon, 17 Jul 2017 10:07:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9152#M180</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T10:07:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9153#M181</link>
      <description>Do you have any deny rule in there as well?&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 11:03:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9153#M181</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T11:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9154#M182</link>
      <description>No i dont have , i think i dont need it because i used this code for ipaddress and it work fine &lt;BR /&gt;
if i have to have deny rule could you write for me the full cammand</description>
      <pubDate>Mon, 17 Jul 2017 11:16:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9154#M182</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T11:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9155#M183</link>
      <description>you could just try to use &lt;BR /&gt;
&lt;BR /&gt;
else {&lt;BR /&gt;
deny;&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
after your then expression</description>
      <pubDate>Mon, 17 Jul 2017 11:34:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9155#M183</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T11:34:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9156#M184</link>
      <description>entry AllowManagementIP {    if match any {                                        ethernet-source-address F8:A7:BC:E0:D1:AE;         }        then {            permit;        }  else {&lt;BR /&gt;
deny;&lt;BR /&gt;
}   }&lt;BR /&gt;
&lt;BR /&gt;
it gives me Error &lt;BR /&gt;
error policy has else clause , which can be used only in clear flow rules&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 12:03:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9156#M184</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T12:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9157#M185</link>
      <description>OK. Try to add a deny all at the bottom of the policy&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 12:16:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9157#M185</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T12:16:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9158#M186</link>
      <description>Myabe just a "deny;" would be enough. Didn't play with policy files for quite some time. &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 12:17:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9158#M186</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T12:17:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9159#M187</link>
      <description>&lt;BR /&gt;
&lt;BR /&gt;
entry AllowManagementIP {    if match any {                                        ethernet-source-address F8:A7:BC:E0:D1:AE;         }        then {            permit;        }  else {&lt;BR /&gt;
deny all;&lt;BR /&gt;
}   }&lt;BR /&gt;
&lt;BR /&gt;
 Error again: attribiute deny should not have any arguments , "all " is invalid</description>
      <pubDate>Mon, 17 Jul 2017 12:21:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9159#M187</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T12:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9160#M188</link>
      <description>As I said. Leave the "all" away.&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 12:55:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9160#M188</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T12:55:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9161#M189</link>
      <description>entry AllowManagementIP {    if match any {                                        ethernet-source-address F8:A7:BC:E0:D1:AE;         }        then {            permit;        }  &lt;BR /&gt;
deny ;&lt;BR /&gt;
  } }&lt;BR /&gt;
&lt;BR /&gt;
Error again what should i do !!</description>
      <pubDate>Mon, 17 Jul 2017 13:03:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9161#M189</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T13:03:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9162#M190</link>
      <description>There is one brace to much at the bottom&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 13:09:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9162#M190</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T13:09:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9163#M191</link>
      <description>i pasted here wrong but in the cli it's correcct &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 13:12:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9163#M191</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T13:12:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9164#M192</link>
      <description>entry DenyAllIngress{&lt;BR /&gt;
if {&lt;BR /&gt;
} then {&lt;BR /&gt;
deny;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 13:15:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9164#M192</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T13:15:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9165#M193</link>
      <description>entry AllowManagementIP {    if match any {                                      ethernet-source-address F8:A7:BC:E0:D1:AE;       }      then {          permit;      }  }entry DenyAllIngress{&lt;BR /&gt;
if {&lt;BR /&gt;
} then {&lt;BR /&gt;
deny;&lt;BR /&gt;
}&lt;BR /&gt;
}&lt;BR /&gt;
&lt;BR /&gt;
still can login with other pc</description>
      <pubDate>Mon, 17 Jul 2017 13:21:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9165#M193</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T13:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9166#M194</link>
      <description>Did you assign the policy to the ingress port?&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 13:23:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9166#M194</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T13:23:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9167#M195</link>
      <description>i am using  it to ssh login&lt;BR /&gt;
&lt;BR /&gt;
using this cammand &lt;BR /&gt;
 &lt;BR /&gt;
config ssh2 access-profile ssh2-acl</description>
      <pubDate>Mon, 17 Jul 2017 13:26:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9167#M195</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T13:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9168#M196</link>
      <description>Did you enable ssh2 to use the access-profile?&lt;BR /&gt;
enable ssh2 access-profile ssh2-acl&lt;BR /&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 13:30:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9168#M196</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T13:30:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9169#M197</link>
      <description>yes and still can login with other pc</description>
      <pubDate>Mon, 17 Jul 2017 13:33:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9169#M197</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T13:33:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9170#M198</link>
      <description>Hm....that's strange. You should log a case with GTAC and have them look into the switch. I am sure it is just a small thing that needs to be changed. They could have a remote session with you and figure it out.&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Jul 2017 13:36:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9170#M198</guid>
      <dc:creator>AnonymousM</dc:creator>
      <dc:date>2017-07-17T13:36:00Z</dc:date>
    </item>
    <item>
      <title>RE: How i can enable access list using only mac address to ssh login</title>
      <link>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9171#M199</link>
      <description>my switches are X250e-48pt i update the firmware from 12.5.4.5 to 15.3.5.2 and i install ssh moudel to install ssh  is it related  or something&lt;BR /&gt;
&lt;BR /&gt;
and thanks for help &lt;BR /&gt;
&lt;BR /&gt;
Best</description>
      <pubDate>Mon, 17 Jul 2017 14:02:00 GMT</pubDate>
      <guid>https://community.extremenetworks.com/t5/extremeswitching-other/how-i-can-enable-access-list-using-only-mac-address-to-ssh-login/m-p/9171#M199</guid>
      <dc:creator>Adnan</dc:creator>
      <dc:date>2017-07-17T14:02:00Z</dc:date>
    </item>
  </channel>
</rss>

