Skip to content

Instantly share code, notes, and snippets.

@wallyqs
Created July 6, 2014 10:45
Show Gist options
  • Select an option

  • Save wallyqs/bc655be602cc0d025919 to your computer and use it in GitHub Desktop.

Select an option

Save wallyqs/bc655be602cc0d025919 to your computer and use it in GitHub Desktop.
ifconfig deprecated
# 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