09-30-2010 02:50 PM - edited 03-04-2019 09:57 AM
I have a 3750 and can telnet / web interface into from every interface that I assign it. How can I prevent this and only allow it for one interface?
(only allow management from here)
Vlan2
Ip address 10.1.1.5 255.255.255.0
Vlan3
Ip address 10.222.1.5 255.255.255.0
Vlan4
Ip address 10.4.3.5 255.255.255.0
Thanks in advance for looking.
Solved! Go to Solution.
09-30-2010 02:57 PM
Determine the valid IP addresses that need access to the management plane.
For this example that say it's all of 192.168.1.0/24
Create an ACL that accounts for management addresses.
access-list 82 remark *** Management ***
access-list 82 permit 192.168.1.0 0.0.0.255
Apply this access list to the management interface.
ip http access-class 82
line vty 0 4 ### if you have more VTY apply to all
access-class 82 in
exit
Chris
09-30-2010 02:57 PM
Determine the valid IP addresses that need access to the management plane.
For this example that say it's all of 192.168.1.0/24
Create an ACL that accounts for management addresses.
access-list 82 remark *** Management ***
access-list 82 permit 192.168.1.0 0.0.0.255
Apply this access list to the management interface.
ip http access-class 82
line vty 0 4 ### if you have more VTY apply to all
access-class 82 in
exit
Chris
09-30-2010 03:18 PM
Thank you very much!
09-30-2010 04:30 PM
Does:
ip http access-class 82
include https?
09-30-2010 04:47 PM
yes it does.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide