Blog Posts » Linux » linux cek network interface
linux cek network interface
Bagaimana cara cek network interface?
Perintah yang legendaris / jadul namun masih bisa digunakan sampai sekarang adalah:
[Textarea][RAW][Download]
- ifconfig
Binary ifconfig terletak di /sbin sehingga untuk menjalankan perintah ini saat tidak login sebagai root adalah dengan cara mengetik full path yaitu /sbin/ifconfig. Atau dengan sudo:
[Textarea][RAW][Download]
- sudo ifconfig
Hasil:
[Textarea][RAW][Download]
- eth0 Link encap:Ethernet HWaddr 00:26:22:8a:4db
- UP BROADCAST MULTICAST MTU:1500 Metric:1
- RX packets:0 errors:0 dropped:0 overruns:0 frame:0
- TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:1000
- RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
- lo Link encap:Local Loopback
- inet addr:127.0.0.1 Mask:255.0.0.0
- inet6 addr: ::1/128 Scope:Host
- UP LOOPBACK RUNNING MTU:65536 Metric:1
- RX packets:89 errors:0 dropped:0 overruns:0 frame:0
- TX packets:89 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:0
- RX bytes:25892 (25.2 KiB) TX bytes:25892 (25.2 KiB)
- ppp0 Link encapoint-to-Point Protocol
- inet addr:10.25.250.147 P-t-P:10.64.64.64 Mask:255.255.255.255
- UP POINTOPOINT RUNNING NOARP MULTICAST MTU:1500 Metric:1
- RX packets:7563 errors:0 dropped:0 overruns:0 frame:0
- TX packets:8883 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:3
- RX bytes:4615282 (4.4 MiB) TX bytes:1175089 (1.1 MiB)
- wlan0 Link encap:Ethernet HWaddr 84:4b:f5:87:1f:f3
- UP BROADCAST MULTICAST MTU:1500 Metric:1
- RX packets:0 errors:0 dropped:0 overruns:0 frame:0
- TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
- collisions:0 txqueuelen:1000
- RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
Perintah baru yang direkomendasikan adalah:
[Textarea][RAW][Download]
- ip link show
Perintah ip bisa dijalankan sebagai root maupun tidak.
Hasil:
[Textarea][RAW][Download]
- 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default
- link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
- 2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
- link/ether 00:26:22:8a:4db brd ff:ff:ff:ff:ff:ff
- 3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT group default qlen 1000
- link/ether 84:4b:f5:87:1f:f3 brd ff:ff:ff:ff:ff:ff
- 5: ppp0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 3
- link/ppp
(admin)