alfresco and iptables

Les Mikesell lesmikesell at gmail.com
Sun Dec 9 20:19:56 UTC 2007


Craig White wrote:
>>
>> iptables -t nat -A PREROUTING -p tcp -d 192.168.3.8 --dport 445 \
>>   -j REDIRECT --to-ports 1445
>> iptables -t nat -A OUTPUT -p tcp -d 192.168.3.8 --dport 445 \
>>   -j REDIRECT --to-ports 1445
> ----
> the thing I can't figure out is why they don't show up...
> # iptables -L
> Chain INPUT (policy ACCEPT)
> target     prot opt source               destination
> 
> Chain FORWARD (policy ACCEPT)
> target     prot opt source               destination
> 
> Chain OUTPUT (policy ACCEPT)
> target     prot opt source               destination
> 
> even though, I just executed...

You need to explicitly list the nat table:

iptables --list -t nat


> -A PREROUTING -d 192.168.3.8 -p tcp -m tcp --dport 139 -j REDIRECT
> --to-ports 1139
> -A OUTPUT -d 192.168.3.8 -p tcp -m tcp --dport 139 -j REDIRECT
> --to-ports 1139

> 
> At any rate, this hasn't changed anything ;-(


I don't think you need the '-m udp/tcp' entries but I'm not sure if they 
hurt anything.

-- 
   Les Mikesell
    lesmikesell at gmail.com




More information about the fedora-list mailing list