Hallo Leute
Beschäftige mich nun seit 1 Woche mit Linux und schaffe es nicht mein heimnetzwerk mit 5 Rechnern über einen Linuxrechner zu routen.
eth0 = 192.168.0.254
eth1 = 80.78.x.x statische Ip adresse von GDSL
vom Router kann ich ins Internet pingen, auĂźerdem soll eine portweiterleitung (80) auf den Typo3 Webserver, mit der ip 192.168.0.1,
eine Portweiterleitung fĂĽr den edonkey client port 4662 + port 25 fĂĽr den mercur Mailserver + 5900 fĂĽr vnc bis ich den ssh tunnel fĂĽr vnc realisiert habe (habe schon darĂĽber gelesen aber noch keine Ahnung wie ich das realisieren soll)
auf Rechner 192.168.0.2
Nun zu den Scripts
Der Inhalt meiner rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
echo "1" > /proc/sys/net/ipv4/ip_forward
echo modprobe
modprobe ip_conntrack_irc
modprobe ipt_MASQUERADE
modprobe ip_conntrack_ftp
modprobe iptable_nat
#/sbin/iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
/sbin/iptables-restore < /etc/firewall/fw.conf
Der Inhalt meiner fw.conf unter etc/firewall/
# Generated by iptables-save v1.2.7a on Mon Apr 7 16:45:49 2003
*filter
:INPUT ACCEPT [19:1935]
:FORWARD ACCEPT [0:0]
UTPUT ACCEPT [0:0]
#Ă–ffnen der Ports
-A INPUT -i eth1 -p tcp -m tcp --dport 4662:4665 -j ACCEPT
-A INPUT -i eth1 -p tcp -m tcp --dport 80 -j ACCEPT
-A INPUT -i eth1 -p tcp -m tcp --dport 5900 -j ACCEPT
-A INPUT -i eth1 -p tcp -m tcp --dport 25 -j ACCEPT
COMMIT
# Completed on Mon Apr 7 16:45:49 2003
# Generated by iptables-save v1.2.7a on Mon Apr 7 16:45:49 2003
*nat
REROUTING ACCEPT [19:2394]
OSTROUTING ACCEPT [0:0]
UTPUT ACCEPT [0:0]
-A PREROUTING -d 80.78.x.x -p tcp -m tcp --dport 4662:4665 -j DNAT --to-destination 192.168.0.2:4662
-A PREROUTING -d 80.78.x.x -p tcp -m tcp --dport 80 -j DNAT --to-destination 192.168.0.1:80
-A PREROUTING -d 80.78.x.x -p tcp -m tcp --dport 5900 -j DNAT --to-destination 192.168.0.2:5900
-A PREROUTING -d 80.78.x.x -p tcp -m tcp --dport 25 -j DNAT --to-destination 192.168.0.2:25
-A POSTROUTING -o eth1 -j MASQUERADE
COMMIT
# Completed on Mon Apr 7 16:45:49 2003
Nun zu meiner Frage was ist an den scripts falsch, ich finde in keinem Forum mehr wirklich eine Hilfe dazu. Ich will endlich weg von windows zumindest alles wo es nicht spielen betrifft.