Label

Software (19) TIPS N TRIK (73)
Diberdayakan oleh Blogger.

Blog Archive

Konfigurasi IP File Ubuntu / Debian:

|| || || Leave a comments
File: /etc/network/interfaces
Static IP example:
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
        address 208.88.34.106
        netmask 255.255.255.248
        broadcast 208.88.34.111
        network 208.88.34.104
        gateway 208.88.34.110
                
Dynamic IP (DHCP) example:
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1
iface eth1 inet dhcp

auto eth2
iface eth2 inet dhcp

auto ath0
iface ath0 inet dhcp

auto wlan0
iface wlan0 inet dhcp
                
Interfaces:
  • lo: Loopback interface (jaringan dalam sistem anda tanpa memperlambat untuk jaringan ethernet nyata berbasis)
  • eth0: Interface LAN card pertama
  • wlan0: Interface wireless card pertama
Lihat juga "man interfaces"

Ubuntu GUI Network Tools:
  • /usr/bin/gnome-nettool (apt-get install gnome-nettool)
  • /usr/bin/network-admin (apt-get install gnome-network-admin)
/[ 0 comments Untuk Artikel Konfigurasi IP File Ubuntu / Debian:]\

Posting Komentar