cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
706
Views
3
Helpful
3
Replies

Open UDP Ports 123/161/500

Joy3
Level 1
Level 1

Hallo,

I have a few C1100 routers that seem to have some UDP ports open. Unless I disable the protocols e.g. NTP, the port are as below after an nmap scan:

123/udp open  ntp

161/udp open  snmp

500/udp open  isakmp

Our SP says that there is currecntly no real security issue but it opens us to of course future problems. Could anyone have an idea/solution to this problem without disabling any of the protocols?

Thanks.

1 Accepted Solution

Accepted Solutions

M02@rt37
VIP
VIP

Hello @Joy3,

Implement ACLs on the routers to restrict access to these open UDP ports. By carefully defining source and destination IP addresses, you can limit the exposure of these services to trusted entities while blocking unauthorized access.

 

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.

View solution in original post

3 Replies 3

M02@rt37
VIP
VIP

Hello @Joy3,

Implement ACLs on the routers to restrict access to these open UDP ports. By carefully defining source and destination IP addresses, you can limit the exposure of these services to trusted entities while blocking unauthorized access.

 

Best regards
.ı|ı.ı|ı. If This Helps, Please Rate .ı|ı.ı|ı.

ip access-list extended 100
deny udp any eq 123 any 
eny udp any any eq 123
deny udp any eq 161 any 
deny udp any any eq 161

deny udp any eq 500 any 
deny udp any any eq 500
permit ip any any

!
interface <connect to ISP>
ip access-group 100 IN

 

here you disable any packet with this port number come from ISP to your router 

 

Joy3
Level 1
Level 1

Thanks so much M02@rt37 and @MHM Cisco World. That actually solves the issue!

Review Cisco Networking for a $25 gift card