I put the following iptable rule in:
iptables -A INPUT -p udp --dport 68 -j DROP
But when I run nmap it still shows that the port is open?
I am running Redhat 8.0
Any ideas?
Thanks,
Frederic
>Hi,
>
>I put the following iptable rule in:
>iptables -A INPUT -p udp --dport 68 -j DROP
>But when I run nmap it still shows that the port is open?
>
>I am running Redhat 8.0
>
iptables filtes the packets, not stop the "listning". In your case
port 68. If you want to close port 68 you need to stop the
service/daemon which uses that port. Use nmap to show where the port
is staring from. Use service to stop a service.
GL Tuan