All of lore.kernel.org
 help / color / mirror / Atom feed
* Error : Invalid Argument
@ 2004-08-30 19:53 João Carlos Garcia
  0 siblings, 0 replies; only message in thread
From: João Carlos Garcia @ 2004-08-30 19:53 UTC (permalink / raw)
  To: netfilter

Hi, 

I´m trying to configure iptables rules, but ...
I´m testing the rules in a separeted environment, but the final topology will be the following
ADSL -- [ LINUX ] -- LOCAL NETWORK

The script look like this

    #!/bin/sh
    INTIF=eth0
    EXTIF=eth1
    INTIP=192.168.0.3
    EXTIP=172.16.0.3

    echo 1 > /proc/sys/net/ipv4/conf/eth0/proxy_arp
    echo 1 > /proc/sys/net/ipv4/conf/eth1/proxy_arp
    echo 1 > /proc/sys/net/ipv4/ip_forward
    for f in /proc/sys/net/ipv4/conf/*/rp_filter; 
    do 
    echo 1 > $f; 
    done

    iptables -F INPUT
    iptables -F OUTPUT
    iptables -F FORWARD
    iptables -A INPUT -j DROP
    iptables -A FORWARD -j DROP
    iptables -A OUTPUT -j DROP
    ...

    iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o $EXTIF -j SNAT --to-source $EXTIP

When the script run the last rule ( NAT ), occurs an error : iptables invalid argument.
I want that the iptables change the source IP address ( 192.168 ) to his ip address ( 172.16.0.3 ) to all connection to Internet

Could anyone help me ?
Thanks in advanced
João Carlos


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.745 / Virus Database: 497 - Release Date: 27/8/2004

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2004-08-30 19:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-30 19:53 Error : Invalid Argument João Carlos Garcia

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.