Ask a Question related to Linux / Unix Administration, Design and Development.
-
Theo Vermeulen #1
iptables question
Hi group
I have got a problem.
I have a firewall (floppyfw 2.05) and it forwards all traffic to port 25 and
80 to a certain computer in my network. but since I have several computers
in the network, it gets sent to xxx.xxx.xx.100 .. so far there isn't a
problem. But due to some electrical problems, all the computers rebooted,
and the one that should get xxx.xxx.xx.100 is now 101, and I can't change it
:(
Now, instead of rebooting all computers pointlessly, I would like to be able
to give a command-line to change the forward-address.
I don't know anything about networks, so please try to explain it not too
difficult.
Thanks
(excuse me for my not-so-good english)
--
Theo Vermeulen
[email]this-email-address-is-real.admin@nospam.patat.org[/email]
^it_IS_^
#EOF
Theo Vermeulen Guest
-
iptables and FMS on RHEL V3
Sorry for awful english. After successfuly instalaltion of FMS on my Linux box, FMS works fine with iptables. ... -
:IPTables::IPv4
Hi to all I am using IPTables::IPv4 but i have problem when i run file iptable.pl than iptable rule will be overwrite on previous iptable rule. I... -
regarding IPTables::IPv4
Hi to all I am using IPTables::IPv4 But i have problem when i run file iptable.pl than iptable rule is overwrite on previous iptable rule. I have... -
iptables trouble
Hi All, Trying to get my firewall to route smtp to an internal mail server. 10.0(eth1) 192.168.x.x (external eth0) | | | ... -
NIS and IPTABLES, what ports to allow ?
Hi, i am setting up NIS for the first time. I get it running by doing an iptables -F on both the client and the sercver, to simplify the setup.... -
jpd #2
Re: iptables question
On 2004-06-27, Theo Vermeulen
<this-email-address-is-real.admin@nospam.patat.org> wrote:
[snip: port forwarding to a dynamic address, and the address changed!!1!1!]That would be in the floppyfw documentation. That is the canonnical> Now, instead of rebooting all computers pointlessly, I would like to be able
> to give a command-line to change the forward-address.
place to look it up. I suggest you do that, instead of asking others
to do it for you.
The better solution is to give that one particular machine a fixed IP.
You don't explain a thing about how the network is setup, so I can't
give hints on how to do that.
Hire someone to fix it for you?> I don't know anything about networks, so please try to explain it not too
> difficult.
--
j p d (at) d s b (dot) t u d e l f t (dot) n l .
jpd Guest
-
Luke #3
Re: iptables question
Theo Vermeulen wrote:
As the other poster suggested you need to set a static ip on your> Hi group
>
>
> I have got a problem.
>
> I have a firewall (floppyfw 2.05) and it forwards all traffic to port 25 and
> 80 to a certain computer in my network. but since I have several computers
> in the network, it gets sent to xxx.xxx.xx.100 .. so far there isn't a
> problem. But due to some electrical problems, all the computers rebooted,
> and the one that should get xxx.xxx.xx.100 is now 101, and I can't change it
> :(
firewall - having it on dhcp allocated address is gonna cause you a lot
of rule changing.
iptables -t nat -A PREROUTING -p tcp -s ! <FIREWALL_IP>/<SUBNET_MASK>> Now, instead of rebooting all computers pointlessly, I would like to be able
> to give a command-line to change the forward-address.
>
> I don't know anything about networks, so please try to explain it not too
> difficult.
-i eth0 --dport 25 -j DNAT --to xxx.xxx.xx.101:25
iptables -t nat -A PREROUTING -p tcp -s ! <FIREWALL_IP>/<SUBNET_MASK>
-i eth0 --dport 80 -j DNAT --to xxx.xxx.xx.101:80
Cheers,
Luke
Luke Guest



Reply With Quote

