NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
bjmango
Mar 27, 2018Aspirant
Which Switch Model support block port#443 traffic per switch port and through command lines
I am looking for a switch that supports. 1. Block/unblock the internet traffic from a certain port (ex.port443) through command line. 2. The traffic could be controled per switch port throught the ...
- AnonymousMar 29, 2018
Hi bjmango,
As port #443 is known protocol for HTTPs over TCP, we can block TCP protocol port=443 as below:
[Step1: create IP ACL rule, deny TCP destination port=443]
ip access-list test
deny tcp any any eq 443
permit ip any any
exit[Step2: binding IP ACL to interface 1/0/6]
interface 1/0/6
ip access-group test in 1
exitBesides: If you want only permit packet with port=443, deny other packet. We need change IP ACL rule as below:
permit tcp any any eq 443
deny ip any anyFor detailed configuration of IP ACL function, please refer to CLI User Manual for Manged Switch, refer to the link (page 940: IP Access Control List Commands).
Anonymous
Mar 29, 2018Hi bjmango,
As port #443 is known protocol for HTTPs over TCP, we can block TCP protocol port=443 as below:
[Step1: create IP ACL rule, deny TCP destination port=443]
ip access-list test
deny tcp any any eq 443
permit ip any any
exit
[Step2: binding IP ACL to interface 1/0/6]
interface 1/0/6
ip access-group test in 1
exit
Besides: If you want only permit packet with port=443, deny other packet. We need change IP ACL rule as below:
permit tcp any any eq 443
deny ip any any
For detailed configuration of IP ACL function, please refer to CLI User Manual for Manged Switch, refer to the link (page 940: IP Access Control List Commands).
bjmango
Mar 29, 2018Aspirant
Thanks a lot EricZ!
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!