Mainos / Advertisement:
Ero sivun ”Debian verkkokonfiguraatio/en” versioiden välillä
Siirry navigaatioon
Siirry hakuun
(Ak: Uusi sivu: * address = IP address, for example 192.168.1.22 * netmask = Subnet mask, for example 255.255.255.0 * gateway = Default gateway, for example 192.168.1.1) |
|||
Rivi 17: | Rivi 17: | ||
gateway ... | gateway ... | ||
− | * address = IP | + | * address = IP address, for example 192.168.1.22 |
− | * netmask = | + | * netmask = Subnet mask, for example 255.255.255.0 |
− | * gateway = | + | * gateway = Default gateway, for example 192.168.1.1 |
Esimerkiksi DHCP määritys: | Esimerkiksi DHCP määritys: |
Versio 29. heinäkuuta 2015 kello 08.52
Interfaces
Debian's network configurations can be found from this file:
nano /etc/network/interfaces
Example of static IP-address configuration:
auto lo iface lo inet loopback auto eth0 iface eth0 inet static address ... netmask ... gateway ...
- address = IP address, for example 192.168.1.22
- netmask = Subnet mask, for example 255.255.255.0
- gateway = Default gateway, for example 192.168.1.1
Esimerkiksi DHCP määritys:
auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp
Muista käynnistä lopuksi verkkopalvelu uudelleen
service networking restart
ifconfig
ifconfig
komennolla näet nykyiset interfacet sekä verkkokonfiguraation
Mainos / Advertisement: