Testinstall: Unterschied zwischen den Versionen
Aus Vosp.info
HK (Diskussion | Beiträge) |
HK (Diskussion | Beiträge) |
||
Zeile 43: | Zeile 43: | ||
== Nameserver == | == Nameserver == | ||
apt-get install bind9 | apt-get install bind9 | ||
+ | Für Tests (z.B. dig) | ||
+ | apt-get install dnsutils | ||
+ | == Masquerading per Firewall == | ||
+ | apt-get install iptables | ||
+ | |||
+ | vim /etc/rc.local | ||
+ | Einfügen vor '''exit 0''' | ||
+ | iptables -t nat -F | ||
+ | iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE | ||
+ | == Forwarding == | ||
+ | vim /etc/sysctl.conf | ||
+ | Ersetze | ||
+ | #net.ipv4.ip_forward=1 | ||
+ | durch | ||
+ | net.ipv4.ip_forward=1 | ||
+ | |||
+ | echo 1 > /proc/sys/net/ipv4/ip_forward |
Version vom 11. März 2015, 17:33 Uhr
Inhaltsverzeichnis
Netzwerkschnittstellen
vim /etc/network/interfaces
auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp # Ergänzung für eth1 (output interface) auto eth1 iface eth1 inet static address 10.78.20.10 netmask 255.255.255.0
systemctl restart networking.service
DHCP-Server
apt-get install isc-dhcp-server
vim /etc/default/isc-dhcp-server
Ersetze
INTERFACES=""
gegen
INTERFACES="eth1"
vim /etc/dhcp/dhcpd.conf
ddns-update-style none; option domain-name "test.local"; option domain-name-servers 10.78.20.10; default-lease-time 600; max-lease-time 7200; log-facility local7; subnet 10.78.20.0 netmask 255.255.255.0 { range 10.78.20.100 10.78.20.200; option routers 10.78.20.10; }
systemctl restart isc-dhcp-server.service
Nameserver
apt-get install bind9
Für Tests (z.B. dig)
apt-get install dnsutils
Masquerading per Firewall
apt-get install iptables
vim /etc/rc.local
Einfügen vor exit 0
iptables -t nat -F iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
Forwarding
vim /etc/sysctl.conf
Ersetze
#net.ipv4.ip_forward=1
durch
net.ipv4.ip_forward=1 echo 1 > /proc/sys/net/ipv4/ip_forward