Last active
July 20, 2018 04:24
-
-
Save csghone/e0672b7801ad32b54afa34428ba2a854 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Sample ip route examples | |
| sudo ip route # List route | |
| sudo ip route add 52.0.0.0/8 via 192.168.1.1 dev wlp2s0 proto static metric 40 | |
| sudo ip route change 52.0.0.0/8 via 192.168.1.1 dev wlp2s0 proto static metric 40 | |
| sudo ip route del 52.0.0.0/8 via 192.168.1.1 dev wlp2s0 proto static metric 40 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment