Created
July 6, 2014 10:45
-
-
Save wallyqs/bc655be602cc0d025919 to your computer and use it in GitHub Desktop.
ifconfig deprecated
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
| # Taken from http://blog.livedoor.jp/sonots/archives/38589335.html | |
| net_tools_deprecated_message () { | |
| echo -n 'net-tools コマンドはもう非推奨ですよ?おじさんなんじゃないですか? ' | |
| } | |
| arp () { | |
| net_tools_deprecated_message | |
| echo 'Use `ip n`' | |
| } | |
| ifconfig () { | |
| net_tools_deprecated_message | |
| echo 'Use `ip a`, `ip link`, `ip -s link`' | |
| } | |
| iptunnel () { | |
| net_tools_deprecated_message | |
| echo 'Use `ip tunnel`' | |
| } | |
| iwconfig () { | |
| echo -n 'iwconfig コマンドはもう非推奨ですよ?おじさんなんじゃないですか? ' | |
| echo 'Use `iw`' | |
| } | |
| nameif () { | |
| net_tools_deprecated_message | |
| echo 'Use `ip link`, `ifrename`' | |
| } | |
| netstat () { | |
| net_tools_deprecated_message | |
| echo 'Use `ss`, `ip route` (for netstat -r), `ip -s link` (for netstat -i), `ip maddr` (for netstat -g)' | |
| } | |
| route () { | |
| net_tools_deprecated_message | |
| echo 'Use `ip r`' | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment