Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to make a license server (w/ static IP) on network1 accessible for all clients in network2.

Setup:

I am using an ubuntu server as gateway between the two networks

  • network1: 11.49.X.X Subn: 255.255.240.0
  • network2: 10.48.0.X Subn: 255.255.255.0
  • The license server is located at 11.49.14.213 (netw1)

The gateway has two network cards installed: eth0: 11.49.9.250 [netw1] & eth1: 10.48.0.1 [netw2] and is working as DHCP server for network2.

To realize the port forwarding I use iptables with following commands:

#iptables –t nat –A PREROUTING –p tcp –i eth1 –d 10.48.0.1 --dport 1947 –j DNAT --to 11.49.14.213
#iptables –t nat –A POSTROUTING –p tcp -d 11.49.14.213 -j MASQUERADE
#iptables -A FORWARD -p tcp -i eth1 -o eth0 --dport 1947 -j ACCEPT

note: I changed the default policys to ACCEPT - so there should be no need to fiddle around with the filter rules while testing. Also, I applied the previous rules as well for udp.

The Problem:

Just for testing purposes, I ran a web server on the license server as well (of course applied the upper rule with port 80 then) - this works! ... i also can access port 1947 via cmd and telnet from the clients.

The problem is just the license server is not responding.

Are the rules correct? Do I need something else? like SNAT or is masquerading enough?

An other aspect is that, before I started, I changed network2 from 192.168.0.X to the currently applied 10.48.0.X . Before I changed this the port forwarding worked!

I did the network change via /etc/network/interfaces to:

auto eth1
iface eth1 inet static
    address 10.48.0.1
    netmask 255.255.255.0

...and the /etc/dhcp3/dhcpd.conf to:

subnet 10.48.0.0 netmask 255.255.255.0 {
  range 10.48.0.100 10.48.0.199;
  option routers 10.48.0.1;
  option domain-name-servers 10.48.0.1;
  option subnet-mask 255.255.255.0;
}

and restarted both services.

route gives me:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
10.48.0.0       *               255.255.255.0   U     0      0        0 eth1
11.49.0.0       *               255.255.240.0   U     0      0        0 eth0

Is there anything else I should have changed on the gateway ?

anything I could have missed out while changing the networks ?

Are the iptable rules correct at all ?

and is it correct that I dont have to care about the INPUT/OUTPUT/FORWARD chains, as long as the default policy is set to ACCEPT ?

best regards and thank you for your time :)

M.

EDIT:

My problem in the moment is that I get totaly confused with the whole routing thing.

since iam using ubuntu server my question is ... where shall I put which gateway information?

Just to clarify the problem: My ubuntu gateway is the DHCP server for network 2 - In network 1 my ubuntu gateway is a regular DHCP client. I am not sure if I totally mix this up but I set in my /etc/networking/interfaces to :

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
    address 11.49.8.250
    netmask 255.255.240.0
    gateway 11.49.10.101

# The secondary network interface
auto eth1
iface eth1 inet static
    address 10.48.0.1
    netmask 255.255.255.0
    gateway 10.48.0.1

Is that correct?

share|improve this question

closed as off topic by skaffman, casperOne Jan 24 '12 at 13:59

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.