mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-01 05:21:06 +01:00
27482cbabd
Assigning a subnet is already covered in the example below. Setting a default route via a router is the most common use case of ip route IMHO.
33 lines
663 B
Plaintext
33 lines
663 B
Plaintext
# Display all interfaces with addresses
|
|
ip addr
|
|
|
|
# Take down / up the wireless adapter
|
|
ip link set dev wlan0 {up|down}
|
|
|
|
# Set a static IP and netmask
|
|
ip addr add 192.168.1.100/32 dev eth0
|
|
|
|
# Remove a IP from an interface
|
|
ip addr del 192.168.1.100/32 dev eth0
|
|
|
|
# Remove all IPs from an interface
|
|
ip address flush dev eth0
|
|
|
|
# Display all routes
|
|
ip route
|
|
|
|
# Display all routes for IPv6
|
|
ip -6 route
|
|
|
|
# Add default route via gateway IP
|
|
ip route add default via 192.168.1.1
|
|
|
|
# Add route via interface
|
|
ip route add 192.168.0.0/24 dev eth0
|
|
|
|
# Change your mac address
|
|
ip link set dev eth0 address aa:bb:cc:dd:ee:ff
|
|
|
|
# View neighbors (using ARP and NDP)
|
|
ip neighbor show
|