Electrical-Forenics Home ray@RayFranco.com                       601.529.7473

   Updated 2/2/2025

   © Dr. Ray Franco, PhD, PE  :  2021-2025

IP Comands

The ip commands replace the depreciated ifconfig and route comands.

The man pages of the ip commands are terse.

References:

  1. Task-centered iproute2 user guide

View Interfaces

ip address

ip route show

All Linux host have a routing table, whether they are a router or not.

The syntax is:

ip route [show] [dev interface]

The command "ip route" or "ip route show" will show the routes for all interfaces.

The older command:

route -n

Has a much better format with the parmaters in columns.

ip route add

The ip route add command manually adds an entry to the host's routing table.

The basic form of the ip route add command is:

 destinationrouteoptions
sudo ip route addnetwork/maskdevinterface[options]
sudo ip route addnetwork/maskviagateway_ip[options]
sudo ip route addnetwork/maskviagateway_ip dev interface[options]

The network/mask is a range of addresses. If you just specify an ip address for the network/mask, it will convert it to a network/mask.

The word "default" is a valid entry for the network/mask. If an ip destination address is not in one of the specified network/mask ranges, it takes this route.

For the word via, you can substitute gw.

Network Bridges

To create a bridge:

ip link add name br0 type bridge

To add an interface to a bridge:

ip link set dev eth0 master br0

To remove an interface from a bridge:

ip link set dev eth0 nomaster

To view interfaces that are part of a bridge

bridge link

To assign an address to the bridge:

ip address add 192.168.75.254/25 brd + dev br0

To bring the bridge up:

ip link set dev br0 up

Wireless Interface Bridging

To add a wireless interface to a network bridge, you have to first assign the wireless interface to an access point or start an acess point with "hostap" [1].

There are special problems when bridging a wireless network interface. According to "ArchLinux Network Bridge, Section 3.1 Wireless interface on a bridge" [1], you have to first assign the wireless interface to an access point or start an access point with hostap. Otherwise it will not be added to bridge. However, there is catch. Most Access Points will reject frames that have source addresses that did not authenticate with the AP.

There are two methods to arround the catch [2][3]

References:

  1. ArchLinux - Network bridge
  2. Debian Wiki - Bridging with a wireless NIC
  3. Bridging Network Connections with Proxy ARP
  4. This looks Promising for RPi ! - ServerFault - Creating a bridged wifi AP (hotspot) in centos 8 or fedora-
  5. Offical Raspberry Pi Tutorials - Host a Hotel Wi-Fi Hotspot with a Raspberry Pi
  6. Disable wifi security in Network Manager [duplicate]
  7. My nftables fails because it wants a network bridge that does not exist yet during startup

References:

  1. Red Hat - Configuring Static Routes with ip commands
  2. StackOverflow - understanding-routing-table-entry