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]

  1. 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]

  1. sudo ifconfig


Hasil:
[Textarea][RAW][Download]

  1. eth0      Link encap:Ethernet  HWaddr 00:26:22:8a:4db  
  2.           UP BROADCAST MULTICAST  MTU:1500  Metric:1
  3.           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  4.           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  5.           collisions:0 txqueuelen:1000 
  6.           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
  7. lo        Link encap:Local Loopback  
  8.           inet addr:127.0.0.1  Mask:255.0.0.0
  9.           inet6 addr: ::1/128 Scope:Host
  10.           UP LOOPBACK RUNNING  MTU:65536  Metric:1
  11.           RX packets:89 errors:0 dropped:0 overruns:0 frame:0
  12.           TX packets:89 errors:0 dropped:0 overruns:0 carrier:0
  13.           collisions:0 txqueuelen:0 
  14.           RX bytes:25892 (25.2 KiB)  TX bytes:25892 (25.2 KiB)
  15. ppp0      Link encapoint-to-Point Protocol  
  16.           inet addr:10.25.250.147  P-t-P:10.64.64.64  Mask:255.255.255.255
  17.           UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1
  18.           RX packets:7563 errors:0 dropped:0 overruns:0 frame:0
  19.           TX packets:8883 errors:0 dropped:0 overruns:0 carrier:0
  20.           collisions:0 txqueuelen:3 
  21.           RX bytes:4615282 (4.4 MiB)  TX bytes:1175089 (1.1 MiB)
  22. wlan0     Link encap:Ethernet  HWaddr 84:4b:f5:87:1f:f3  
  23.           UP BROADCAST MULTICAST  MTU:1500  Metric:1
  24.           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  25.           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  26.           collisions:0 txqueuelen:1000 
  27.           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)


Perintah baru yang direkomendasikan adalah:
[Textarea][RAW][Download]

  1. ip link show


Perintah ip bisa dijalankan sebagai root maupun tidak.

Hasil:
[Textarea][RAW][Download]

  1. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default 
  2.     link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  3. 2: eth0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000
  4.     link/ether 00:26:22:8a:4db brd ff:ff:ff:ff:ff:ff
  5. 3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT group default qlen 1000
  6.     link/ether 84:4b:f5:87:1f:f3 brd ff:ff:ff:ff:ff:ff
  7. 5: ppp0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UNKNOWN mode DEFAULT group default qlen 3
  8.     link/ppp 


(admin)