Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. router config (Technicolor TC7200 Kabel router)
  2.  
  3. IP = 192.168.0.1
  4. Subnet= 255.255.255.0
  5. DHC=AUS
  6. Lokale Adresse starten xxx
  7. DHCP Pool grösse = xxx
  8. leasedauer = 86400 sec.
  9. DNS Server 1 (leer)
  10. DNS Server 2 (leer)
  11. Domain name (leer)
  12.  
  13.  
  14.  
  15. /etc/network/interfaces
  16.  
  17. # This file describes the network interfaces available on your system
  18. # and how to activate them. For more information, see interfaces(5).
  19.  
  20. # The loopback network interface
  21. auto lo
  22. iface lo inet loopback
  23.  
  24. # The primary network interface
  25. auto em1
  26. iface em1 inet static
  27. address 192.168.0.2
  28. netmask 255.255.255.0
  29. network 192.168.0.0
  30. broadcast 192.168.0.255
  31. gateway 192.168.0.1
  32. dns-nameservers 8.8.8.8 8.8.4.4
  33.  
  34.  
  35. /etc/dhcp/dhcpd.conf
  36.  
  37. authoritative;
  38. subnet 192.168.0.0 netmask 255.255.255.0 {
  39. range 192.168.0.3 192.168.0.254;
  40. interface em1;
  41. option routers 192.168.0.1;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement