Hi all.
I've been trying to streamline the amount of syslog messages being kicked out by my router and I've decided that I really don't need to see the BOOTPS/PC conversation anymore as DHCP on the WAN interface is working fine.
However upon removing the LOG from the following ACL statements (applied to the WAN interface), said interface is no longer able to pickup an IP via DHCP ! If I replace the LOG keyword, DHCP instantly assigns an IP ?
These are the statements that work:
This is what appears to stop DHCP from assigning:
I have the ACL in a txt file on a TFTP server and I am copying the new ACL onto the router via TFTP (directly into the running config).
Any ideas whats happening ? I have filter the syslog message on the syslog server but it'd be better to not have them broadcast at all...
I've been trying to streamline the amount of syslog messages being kicked out by my router and I've decided that I really don't need to see the BOOTPS/PC conversation anymore as DHCP on the WAN interface is working fine.
However upon removing the LOG from the following ACL statements (applied to the WAN interface), said interface is no longer able to pickup an IP via DHCP ! If I replace the LOG keyword, DHCP instantly assigns an IP ?
These are the statements that work:
Code:
access-list 101 permit udp 10.0.0.0 0.255.255.255 eq bootps any eq bootpc log
access-list 101 permit icmp 10.0.0.0 0.255.255.255 any log
access-list 101 permit udp host 62.253.96.20 eq bootps any eq bootpc log
access-list 101 permit icmp host 62.253.96.20 any log
access-list 101 permit udp host 192.168.100.1 eq bootps any eq bootpc log
access-list 101 permit udp host 0.0.0.0 eq bootps any eq bootpc log
This is what appears to stop DHCP from assigning:
Code:
no access-list 101
access-list 101 permit udp 10.0.0.0 0.255.255.255 eq bootps any eq bootpc
access-list 101 permit icmp 10.0.0.0 0.255.255.255 any
access-list 101 permit udp host 62.253.96.20 eq bootps any eq bootpc
access-list 101 permit icmp host 62.253.96.20 any
access-list 101 permit udp host 192.168.100.1 eq bootps any eq bootpc
access-list 101 permit udp host 0.0.0.0 eq bootps any eq bootpc
<remainder of ACL chopped for simplicity>
I have the ACL in a txt file on a TFTP server and I am copying the new ACL onto the router via TFTP (directly into the running config).
Any ideas whats happening ? I have filter the syslog message on the syslog server but it'd be better to not have them broadcast at all...