Mengkonfigurasi Interface di Ubuntu Shell: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) New page: Mengkonfigurasi Interface di Shell dapat melalui dua cara * Melalui Command Line * Mengedit file /etc/network/interfaces ==Melalui Command Line== Menggunakan perintah ifconfig eth0 19... |
Onnowpurbo (talk | contribs) |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 29: | Line 29: | ||
auto eth0 | auto eth0 | ||
iface eth0 inet dhcp | iface eth0 inet dhcp | ||
Untuk LAN Statik | |||
auto eth0 | |||
iface eth0 inet static | |||
address 192.168.0.3 | |||
broadcast 192.168.0.255 | |||
netmask 255.255.255.0 | |||
gateway 192.168.0.223 | |||
dns-nameservers 192.168.3.45 192.168.8.10 | |||
Untuk WLAN | Untuk WLAN | ||
| Line 54: | Line 64: | ||
* [[Linux Howto]] | * [[Linux Howto]] | ||
* [[Konfigurasi Jaringan]] | |||
* [[iwconfig: akses dengan wpa]] | |||
Latest revision as of 03:08, 2 January 2021
Mengkonfigurasi Interface di Shell dapat melalui dua cara
- Melalui Command Line
- Mengedit file /etc/network/interfaces
Melalui Command Line
Menggunakan perintah
ifconfig eth0 192.168.0.3 netmask 255.255.255.0
Untuk Wireless
iwconfig wlan0 essid namahotspot iwconfig wlan0 mode managed
Untuk Scanning Wireless
iwlist scanning
Melalui /etc/network/interfaces
Edit file
vi /etc/network/interfaces
Untuk LAN
auto eth0 iface eth0 inet dhcp
Untuk LAN Statik
auto eth0 iface eth0 inet static address 192.168.0.3 broadcast 192.168.0.255 netmask 255.255.255.0 gateway 192.168.0.223 dns-nameservers 192.168.3.45 192.168.8.10
Untuk WLAN
auto eth1 allow-hot plug eth1 iface eth1 inet dhcp wireless-mode managed wireless-essid NAMAHOTSPOT
Untuk WLAN menggunakan MESH
auto eth1 allow-hot plug eth1 iface eth1 inet static address 172.16.1.2 broadcast 172.16.255.255 netmask 255.255.0.0 wireless-mode ad-hoc wireless-channel 1 wireless-essid MESH wireless-bssid 02:ca:ff:ee:ba:be