Search:

Networking


EtherApe

Last Updated: March 13, 2016 10:58:24 PM
Created On: August 15, 2015 12:00:00 AM

Network Monitor

Add Comment

Using Wireshark

Last Updated: August 16, 2015 07:36:24 PM
Created On: August 15, 2015 12:00:00 AM

Capture

sudo tshark -f "tcp port 80" -i eth0 -w /tmp/capture3.cap

View

sudo tshark -R "ip.addr == 192.168.0.80" -r /tmp/capture2.cap

tshark is the app installed on the server.

Use to see what ip addresses to block.

Add Comment

Configure Vlan

Last Updated: March 13, 2016 11:01:20 PM
Created On: August 15, 2015 12:00:00 AM

Configure a Linux server with Vlan's.

Add Comment

Fix Linux Networking

Last Updated: March 13, 2016 11:11:01 PM
Created On: August 15, 2015 12:00:00 AM

Edit /etc/samba/samba.conf
 
    workgroup = WORKGROUP (Change this to whatever the workgroup is)
    netbios name = VboxMint13 (add this line)
    name resolve order = lmhosts wins bcast host (uncomment and change order, put host at the end)
 
Edit /etc/nsswitch.conf
 
    hosts: files mdns4_minimal [NOTFOUND=return] wins dns mdns4 (add the wins item)

Seems to work every time.

Add Comment