Thanks dmizer for helping me fix this problem. It went away when I turned ufw (using gufw) to allow incoming connections.
However when I turned ufw back to block incoming connections and tried the following I could not see any computers on the network.
Code:
sudo ufw allow proto udp to any port 137 from 192.168.29.0/24
sudo ufw allow proto udp to any port 138 from 192.168.29.0/24
sudo ufw allow proto tcp to any port 139 from 192.168.29.0/24
sudo ufw allow proto tcp to any port 445 from 192.168.29.0/24
I checked /var/log/syslog and found out that the ports 137 138 139 445 were source ports not destination ports so I changed it around using the GUI. I wonder if anyone else has this problem.
My result for the command
Code:
sudo ufw status numbered
Status: active
To Action From
-- ------ ----
[ 1] Anywhere ALLOW 192.168.1.0/24 139/tcp
[ 2] Anywhere ALLOW 192.168.1.0/24 445/tcp
[ 3] Anywhere ALLOW 192.168.1.0/24 137/udp
[ 4] Anywhere ALLOW 192.168.1.0/24 138/udp
Thanks again!