Ads from Google

Friday, June 29, 2007

Using two network connection, modem and LAN together

When our LAN connection has no good internet access or limited internet but we need to work such as accessing office servers, probably we have our own internet connection as additional connection. In my case, this internet connection uses modem (GPRS from 3G handphone).

To configure both connection together, we should also consider to modify network routing table in laptop or computer. To configure this we need to

  • test LAN connection without modem
    • make sure our modem is not dialed up / connected, only our LAN cable
    • to test, run menu Start | Run | cmd ENTER | ipconfig /all ENTER
    • notice gateway IP address and ping out to this address e.g “ping 10.20.30.1″, the connection is OK if there is reply
    • note: in Unix/Linux the command would be ifconfig
  • test modem connection without LAN
    • make sure our LAN cable is not connected
    • use your own procedure to connect the modem to service provider
    • after connected, use same procedure for LAN to test the connection
  • test modem and LAN
    • connect LAN cable to computer, and dial up to internet provider with the modem
    • run menu Start | Run | cmd ENTER | ipconfig /all ENTER
    • run “route print”
    • run “route delete 0.0.0.0″
    • run “route add 10.0.0.0 mask 255.0.0.0 10.20.30.1″ to create routing for our LAN to gateway of our office LAN
    • run “route add 0.0.0.0 mask 0.0.0.0 200.160.200.1″ to create network routing for our internet connection to gateway of internet provider
    • we can copy and paste the above commands with probably there will be change in internet gateway everytime we connect / dial-up again using the modem

4 comments:

BengGaBoy said...

Hi,

I have read your article with great interest. However, I'm still not very sure on the instructions.

1. Connect up both the LAN and 3G modem [Clear]

2. route delete 0.0.0.0 [clear]

3. route add 10.0.0.0 mask 255.0.0.0 10.20.30.1 to create routing for LAN.

[Questions]
what is 10.0.0.0 ? IP address of the LAN ?

What is 255.0.0.0 ? Default or standard setting ?

What is 10.20.30.1 ? IP address of the gateway ?

sapikota said...

nice post..its very helpful..

keep posting^^

Agung said...

It works! Thanks :)
I think we can set the destination route for LAN only (10.0.0.0), because when modem is plugged in, Windows will automatically set its routing to 0.0.0.0.

@BengGaBoy:
- 10.0.0.0 means any destinations in local network (10.x.x.x)
- 255.0.0.0 subnet mask
- 10.20.30.1 yes, gateway's IP address

socialawy said...

Working like charm :)