mal das narc geholt
vorher benutzte ich ein kleines masq script von einem freund
nach dem ich narc eingerichtet hatte ging es ganz gut
nun wollte ich noch ein paar ports forwarden
leider wird eine ip verlangt aber diese sind ja bei t-dsl dynamisch
wenn ich sie weglasse geht garnix
Code: Alles auswählen
# NARC port forwarding config
#
# If you place this file in a location other than /etc/narc-forward.conf, make sure you change
# FORWARD_CONF in narc.conf
#
# Add/duplicate the lines below as necessary; there is no hard limit
# Example: PROTOCOL="tcp";ORIGINAL_IP="1.3.5.7";ORIG_PORT="8080";NEW_IP="10.10.42.57";NEW_PORT="80"
# PROTOCOL="udp";ORIGINAL_IP="1.3.5.7";ORIG_PORT="53";NEW_IP="10.10.42.61";NEW_PORT="53"
# Note: Use port numbers instead of named services from /etc/services
# hab ich gerade vergessen :)
PROTOCOL="tcp";ORIG_IP="80.128.184.207";ORIG_PORT="5031";NEW_IP="192.168.0.2";NEW_PORT="5031"
# ICQ 5010-5018 und direct connect 5019
PROTOCOL="tcp";ORIG_IP="80.128.184.207";ORIG_PORT="5010:5019";NEW_IP="192.168.0.2";NEW_PORT="5010:5019"
# AIM 5190 4443
PROTOCOL="tcp";ORIG_IP="80.128.184.207";ORIG_PORT="5190";NEW_IP="192.168.0.2";NEW_PORT="5190"
PROTOCOL="tcp";ORIG_IP="80.128.184.207";ORIG_PORT="4443";NEW_IP="192.168.0.2";NEW_PORT="4443"
# blubster
PROTOCOL="tcp";ORIG_IP="80.128.184.207";ORIG_PORT="41170:41350";NEW_IP="192.168.0.2";NEW_PORT="41170:41350"
PROTOCOL="udp";ORIG_IP="80.128.184.207";ORIG_PORT="41170:41350";NEW_IP="192.168.0.2";NEW_PORT="41170:41350"
dann gibt es noch die möglichkeit das portrouting auszustellen und manuelle befehle zu nehmen
Code: Alles auswählen
# aim
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 4443 -j DNAT --to 192.168.0.2:4443
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 5190 -j DNAT --to 192.168.0.2:5190
# icq und directconnect
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 5010:5019 -j DNAT --to 192.168.0.2:5010:5019
# blubster
iptables -t nat -A PREROUTING -i ppp0 -p udp --dport 41170:41350 -j DNAT --to 192.168.0.2:41170:41350
iptables -t nat -A PREROUTING -i ppp0 -p tcp --dport 41170:41350 -j DNAT --to 192.168.0.2:41170:41350
habe ich irgendwo einen fehler gemacht oder gibt es doch eine möglichkeit mit dem forwardscript das ganze zu machen trotz dynamischer ip!?