I have a bare bones ubuntu oneiric installation running on a virtual server.
I have disabled ipv6 and implemented some security measures in sysctl.conf:
/etc/sysctl.conf
I have ufw setup in the following way:Code:# Kernel options kernel.printk = 3 4 1 3 # Disable Ping net.ipv4.icmp_echo_ignore_all = 1 # Spoof protection (reverse-path filter) net.ipv4.conf.default.rp_filter = 1 net.ipv4.conf.all.rp_filter = 1 # Enable TCP SYN Cookie Protection net.ipv4.tcp_syncookies = 1 # Do not accept ICMP redirects (prevent MITM attacks) net.ipv4.conf.all.accept_redirects = 0 # Do not send ICMP redirects (we are not a router) net.ipv4.conf.all.send_redirects = 0 # Do not accept IP source route packets (we are not a router) net.ipv4.conf.all.accept_source_route = 0 # Log Martian Packets net.ipv4.conf.all.log_martians = 1 # Disable IPV6 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1
# sudo ufw status verbose
When checking logs i see the following block:Code:Logging: on (low) Default: deny (incoming), allow (outgoing) New profiles: skip 22/tcp LIMIT IN Anywhere
#sudo tailf /var/log/ufw.log
I did the following:Code:[UFW BLOCK] IN=eth0 OUT= MAC=* SRC=0.0.0.0 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2
# sudo ifconfig -multicast
Then i checked the ufw logs again and the block above was still being logged.
The blocking action is good, i just don't know what it is that is causing it!
I asked my virtual server provider what this ufw log meant and they said they didn't know!
Can anyone tell me what this block represents?
I will be using this virtual server to run a web server with drupal so i want to make sure i understand the setup before i install the lamp server.Code:[UFW BLOCK] IN=eth0 OUT= MAC=* SRC=0.0.0.0 DST=224.0.0.1 LEN=32 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2
I just need to understand what is being blocked and why. The logs show this blocking action every few seconds - continuously.
Anyone?![]()



Adv Reply


I see light at the end of the tunnel...


Bookmarks