Networking notes

From Noah.org
Revision as of 16:49, 24 May 2014 by Root (talk | contribs)
Jump to navigationJump to search


Set static IP

These settings are lost on reboot. This is just for a temporary config.

# ip route add default via 192.168.0.1
# ifconfig eth0 192.168.0.2 netmask 255.255.255.0

Add Virtual Interfaces

Adding virtual interfaces is easy in Linux. Just add a colon and an integer to a real interface name and configure if as if it already existed; you don't have to create it first. In this example, assume 'eth0' is the real interface name and use 1 for the virtual interface integer. In other words, configure 'eth0:1'. You can pick any integer as long as it is not already used.

ifconfig eth0:1 192.168.0.3

The netmask defaults to 255.255.255.0.

Delete a virtual interface

Use the down command:

# ifconfig eth0:1 down

Configure persistent network settings

This describes persistent Linux network interface settings. That is, settings that will be restored after a reboot. Different distributions of Linux do this differently. This first shows the Debian/Ubuntu way followed by the RedHat/CentOS way. After you make changes you will need to restart the networking subsystem to make the changes active:

/etc/init.d/networking restart

Debian/Ubuntu

Edit the file:

 /etc/network/interfaces 

Edit the section for your primary network interface. Example for setting up 192.168.1.66:

Static IP address:

auto eth0
iface eth0 inet static
    address 192.168.1.66
    netmask 255.255.255.0
    gateway 192.168.1.1

DHCP assigned IP address:

auto eth0
iface eth0 inet dhcp

Restart the network layer:

/etc/init.d/networking restart

RedHat

All network config files are in this directory:

 /etc/sysconfig/network-scripts

Each interface will have its own file named after the infterface:

 ifcfg-eth0
 ifcfg-eth1
 ifcfg-lo

The contents of a minimal ifcfg-eth0 file looks like this (GATEWAY may not be needed if you are just setting up a LAN between a few machines):

DEVICE=eth0
ONBOOT=yes
BOOTPROTO=static
IPADDR=10.1.0.1
NETMASK=255.255.255.0
GATEWAY=10.0.0.1

You need to restart the network system to have the new settings take effect:

 # service network restart

Broadcast

You don't need to worry about the broadcast address (or Bcast). By default, it is set to the interface address bitwise OR'ed with the inverse of the netmask.

how to change the interface name for a new network device using udev

Ubuntu uses udev to keep device names consistent between each boot or device hot-swap. It keeps track of the MAC address of the device and matches any previously seen MAC address with a previously assigned interface name. If it has never seen the new MAC address before then the device is assigned a new interface name and that MAC-to-ifname mapping is recorded for later.

Sometimes you replace a network card or swap out the entire motherboard; you never intend to plug in the old device again and you want the new device to take on the old interface name.

Ubuntu keeps track of the mappings in this file: /etc/udev/rules.d/70-persistent-net.rules You may edit this file, but be sure to obey the comment in the file, "# You can modify it, as long as you keep each rule on a single line."

# PCI device 0x14e4:0x164c (bnx2)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:22:19:b7:a5:42", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

Set the NAME parameter; write the file; then run '...TODO...'.

routing the route

add a route

This can also be done with the ip2 command:

route add default gw 192.168.1.1

display routing table

On Linux you can use `netstat -rn` or `route` or `ip route`.

I always forget this when I work on a BSD machine. I've got some kind of mental block against this:

netstat -rn

LOWER_UP

The `ip link show` command will display flags associated with each interface. One that used to bug me was 'LOWER_UP'. What the hell? It wasn't documented anywhere in the iproute2 tools. Eventually I heard from word of mouth that it was the physical layer link flag; meaning, if LOWER_UP was set then your Ethernet cable was plugged in and connected to a network. I finally went through the source and found the definition in <linux/if.h>, see IFF_LOWER_UP.

netstat

See also Port_to_PID.

The most used form of netstat is netstat -apnut. This show listening and non-listening ports. It shows the program and PID that has the socket. It turns off all name resolution.

This shows processes listening and established connections on any network ports.

netstat --all --program --numeric --udp --tcp
# short form
netstat -apnut

If you want to include UNIX domain sockets use this:

netstat --all --program --numeric

You may also want to add the --extend option to see the user and inode associated with the processing listening on a port.

For OpenBSD you can use this:

netstat -an