How Do I Create Static Routes In Windows Xp?

Pages: 1, 2
free web hosting

Latest Entry: (Post #11) by Habble on Aug 6 2008, 07:07 AM. (Line Breaks Removed)
To answer the original question about static addresses, in both Linux and Windows, the key files are "hosts" and "lmhosts". In Linux, they are usually in /etc/. In Windows 2000, they are in \WINNT\system32\drivers\etc\. In Windows, the lmhosts file defines the decimal addresses corresponding to given names, for example: CODE192.168.1.11 alpha #PRE192... read more.
Express your Opinion! Contribute Knowledge.

Free Web Hosting > Computers & Tech > Networking

How Do I Create Static Routes In Windows Xp?

dserban
Here's my setup:

My PC connects to my Internet facing wireless router via a USB-pluggable wireless NIC, the IP address of which is 192.168.1.2 (netmask 255.255.255.0).
The IP address of my router's LAN port is 192.168.1.1.

The NIC which is embedded in the motherboard has remained disabled so far.

Everything works OK, but I recently got a hold of a crossover cable, and I started using it to connect a laptop to my PC.
So I enabled the embedded NIC on the PC and gave it an IP address of 192.168.2.2 (netmask 255.255.255.0, default gateway 192.168.2.2).
The laptop's IP address is 192.168.2.1.

My only objective is to able to exchange files between my PC and my laptop.
I do not want to connect my laptop to the internet, either directly or indirectly.

And here comes my problem:
After setting up the (crossover cable) connection between the two, I tried going out to the internet again on my PC, and failed.

I tried using tracert to troubleshoot what's going on, and my gut feeling is that as soon as I enabled the embedded NIC on the PC, it seems to think "Oh, this is my new Internet, let me send all the requests from the browser to this new default gateway 192.168.2.2".

One solution that comes to my mind is to use static routes. I know what they are in theory, but I don't know how to issue the commands.
If anyone has experience using static routes in Windows XP, I would appreciate a few pointers in the right direction.

Also, if there is a better / more efficient / more elegant solution, I would very much like to hear it.

 

 

 


Reply

faulty.lee
There's 3 things you can try, non of them belongs to static route.

1. Set a permanent DNS in the DNS setting of wireless NIC and set the gateway of both NIC to your router's IP

2. Bridge the connection of both your NIC. You can select the 2 NIC, then right click, Bridge Connection. That way, you only need to set 1 IP address for the bridged connection. So, both your NIC will have the same IP, and that should help fix the issue, also it will automatically routes internet on your laptop(if i'm not mistaken, as i have tried the same thing before, quite sometime back)

3. Setup internet sharing, to share your internet to your laptop. That way, windows might figure out which NIC is actually connected to the internet.

Let me know if any of that works. I seldom play with networking lately, will be good to refresh my theory a bit.

Good Luck


Reply

wutske
Try these settings:
Wireless Nic:
IP: same
Netmask: same
Default Gateway:192.168.1.1

Wired Nic;
IP: 192.168.1.3
Netmask: 255.255.255.0
Default gateway: none

Laptop Nic:
IP: 192.168.1.4
Netmask: 255.255.255.0
Default gateway: none


This normaly should give you internet and connection with your laptop. If windows doesn't immediatly shows you the laptop, then try accessing manualy in Explorer (adress: \\192.168.1.4 )

Reply

dserban
I just discovered the command "route print", so I am posting below the "before" and "after" snapshots:

- Before enabling the embedded NIC (Internet up):

CODE

===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25
192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25
192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25
224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25
255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1
Default Gateway: 192.168.1.1
===========================================================================
Persistent Routes:
None


- After enabling the embedded NIC (Internet down):

CODE

===========================================================================
Interface List
0x1 ........................... MS TCP Loopback interface
0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport
0x10004 ...00 30 05 45 15 5a ...... Intel® PRO/100 VE Network Connection - Packet Scheduler Miniport
===========================================================================
===========================================================================
Active Routes:
Network Destination Netmask Gateway Interface Metric
0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25
0.0.0.0 0.0.0.0 192.168.2.2 192.168.2.2 20
127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1
192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25
192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25
192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25
192.168.2.0 255.255.255.0 192.168.2.2 192.168.2.2 20
192.168.2.2 255.255.255.255 127.0.0.1 127.0.0.1 20
192.168.2.255 255.255.255.255 192.168.2.2 192.168.2.2 20
224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25
224.0.0.0 240.0.0.0 192.168.2.2 192.168.2.2 20
255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1
255.255.255.255 255.255.255.255 192.168.2.2 192.168.2.2 1
Default Gateway: 192.168.2.2
===========================================================================
Persistent Routes:
None

 

 

 


Reply

dserban
Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.

Reply

yordan
QUOTE(dserban @ Jun 30 2007, 02:14 PM) *
Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.

Congrats. Wutske is right, the error you did was changing the default gateway when adding your second network.
Basically, when you have a computer correctly connected to the worldwide network, like your PC which had a correct default gateway and a DNS, the standard thing to do is to leave that working part continue working.
So, when you add a second network (that is what you do when you activate your second NIC adapter) you should not remove your default gateway, replacing the correctly working one by a non-working default gateway.
The default gateway is your wireless router, your wireless router must remain your default gateway.
So, when you manually add other NIC's to this computer, please feel free to give them private IP addresses, this is correct, simply write down nothing in the default gateway field, leave this field blank, and the new network will start working correctly without disturbing you old network which will continue working as usual.
By the way, don't be confused having this problem : this kind of problem is the problem I am currently experiencing at office : my collegues continuously change their default gateways, and then start complaining because their network does not work any more !

Reply

iGuest
Windows XP Pro PC:
IP: 10.0.0.X
Gateway: 10.0.0.1
On LOCAL network 10.0.0.1/255.255.255.0

Windows 2003 Server:
External IP: ww.Xx.Yy.Zz
Internal IP: 192.168.1.25
Gateway: 192.168.1.1 (the one corresponding to the external IP)
On REMOTE network 192.168.1.1/255.255.255.0

The router 192.168.1.1 is connecting via VPN to another router 192.168.2.1/255.255.255.0.

The Windows 2003 Server (192.168.1.25) has a Host-to-host VPN connection to another remote external Windows 2003 Server: 192.168.200.1/255.255.255.255
From the Windows 2003 Server I can successfully access the remote server 192.168.200.1 as well as the entire 192.168.2.0/24 network (router-to-router VPN) without problems.

WHAT I AM TRYING TO ACHIEVE:
I connect the local PC (10.0.0.X) via VPN to the Windows 2003 Server on the remote network. I can see 192.168.1.0/24 without problems.

If I select the 'Use default gateway on remote network' on the local PC VPN connection (Networking->TCP/IP Protocol->Properties->Advanced), ALL TRAFIC GOES OUT from the remote Windows 2003 Server (192.168.1.25), regardless of the the IP (except, of course, traffic to 10.0.0.0/24). As such, I can ping/access remote external server 192.168.200.1 and the entire 192.168.2.0/24 network via 192.168.1.25's routing.

However, if I uncheck the 'Use default gateway on remote network' on the local PC's VPN connection, I can only access 192.168.1.0/24 and I CANNOT ACCESS 192.168.200.1 or 192.168.2.0/24.

I have been 'playing around' with the ROUTE ADD command, but to no avail.

Any ideas/suggestions?

Thanks in advance for your time!
-Costa

-reply by costa

Reply

iGuest
Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus

Reply

iGuest
Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus

Reply

Habble
THIS IS ALL RIGHT I AGREE 100%

Here's my setup:

My PC connects to my Internet facing wireless router via a USB-pluggable wireless NIC, the IP address of which is 192.168.1.2 (netmask 255.255.255.0).
The IP address of my router's LAN port is 192.168.1.1.

The NIC which is embedded in the motherboard has remained disabled so far.

Everything works OK, but I recently got a hold of a crossover cable, and I started using it to connect a laptop to my PC.
So I enabled the embedded NIC on the PC and gave it an IP address of 192.168.2.2 (netmask 255.255.255.0, default gateway 192.168.2.2).
The laptop's IP address is 192.168.2.1.

My only objective is to able to exchange files between my PC and my laptop.
I do not want to connect my laptop to the internet, either directly or indirectly.

And here comes my problem:
After setting up the (crossover cable) connection between the two, I tried going out to the internet again on my PC, and failed.

I tried using tracert to troubleshoot what's going on, and my gut feeling is that as soon as I enabled the embedded NIC on the PC, it seems to think "Oh, this is my new Internet, let me send all the requests from the browser to this new default gateway 192.168.2.2".

One solution that comes to my mind is to use static routes. I know what they are in theory, but I don't know how to issue the commands.
If anyone has experience using static routes in Windows XP, I would appreciate a few pointers in the right direction.

Also, if there is a better / more efficient / more elegant solution, I would very much like to hear it.



--------------------

There are only 10 types of people in the world: those who understand binary and those who don't.


faulty.lee

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 08:29 AM Post #2


Premium Member


Group: [HOSTED]
Posts: 437
Joined: 5-November 06
Member No.: 17,016



There's 3 things you can try, non of them belongs to static route.

1. Set a permanent DNS in the DNS setting of wireless NIC and set the gateway of both NIC to your router's IP

2. Bridge the connection of both your NIC. You can select the 2 NIC, then right click, Bridge Connection. That way, you only need to set 1 IP address for the bridged connection. So, both your NIC will have the same IP, and that should help fix the issue, also it will automatically routes internet on your laptop(if i'm not mistaken, as i have tried the same thing before, quite sometime back)

3. Setup internet sharing, to share your internet to your laptop. That way, windows might figure out which NIC is actually connected to the internet.

Let me know if any of that works. I seldom play with networking lately, will be good to refresh my theory a bit.

Good Luck




wutske

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 08:32 AM Post #3


Super Member


Group: [HOSTED]
Posts: 969
Joined: 2-August 05
From: Kapellen (Antwerp, Belgium)
Member No.: 7,585



Try these settings:
Wireless Nic:
IP: same
Netmask: same
Default Gateway:192.168.1.1

Wired Nic;
IP: 192.168.1.3
Netmask: 255.255.255.0
Default gateway: none

Laptop Nic:
IP: 192.168.1.4
Netmask: 255.255.255.0
Default gateway: none


This normaly should give you internet and connection with your laptop. If windows doesn't immediatly shows you the laptop, then try accessing manualy in Explorer (adress: \\192.168.1.4 )


--------------------


PCs: self-made Barton2500+ | Dell Inspiron 6400
OS'es: WinXP SP1 + openSuse 10.3 + Windows Vista Home Premium + Dell Media Direct (=XP Media Center like)
Chat: Mercury Messenger
Browser: Opera9
Java: 1.6
AV: Avast
FW: Sygate PF + Comodo PFP


dserban

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 08:33 AM Post #4


Premium Member


Group: [HOSTED]
Posts: 286
Joined: 17-June 07
Member No.: 22,702



I just discovered the command "route print", so I am posting below the "before" and "after" snapshots:

- Before enabling the embedded NIC (Internet up):


CODE
===========================================================================Inter
face List0x1 ........................... MS TCP Loopback interface0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport========================================================================
==============================================================================Ac
tive Routes:Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25 192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25 192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25 224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25 255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1Default Gateway: 192.168.1.1=====================================================================
======Persistent Routes: None

- After enabling the embedded NIC (Internet down):


CODE
===========================================================================Inter
face List0x1 ........................... MS TCP Loopback interface0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport0x10004 ...00 30 05 45 15 5a ...... Intel® PRO/100 VE Network Connection - Packet Scheduler Miniport========================================================================
==============================================================================Ac
tive Routes:Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25 0.0.0.0 0.0.0.0 192.168.2.2 192.168.2.2 20 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25 192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25 192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25 192.168.2.0 255.255.255.0 192.168.2.2 192.168.2.2 20 192.168.2.2 255.255.255.255 127.0.0.1 127.0.0.1 20 192.168.2.255 255.255.255.255 192.168.2.2 192.168.2.2 20 224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25 224.0.0.0 240.0.0.0 192.168.2.2 192.168.2.2 20 255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1 255.255.255.255 255.255.255.255 192.168.2.2 192.168.2.2 1Default Gateway: 192.168.2.2=====================================================================
======Persistent Routes: None



--------------------

There are only 10 types of people in the world: those who understand binary and those who don't.


dserban

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 12:14 PM Post #5


Premium Member


Group: [HOSTED]
Posts: 286
Joined: 17-June 07
Member No.: 22,702



Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.


--------------------

There are only 10 types of people in the world: those who understand binary and those who don't.


yordan

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 01:28 PM Post #6


Way Out Of Control - You need a life smile.gif


Group: [MODERATOR]
Posts: 1,884
Joined: 16-August 05
Member No.: 7,896



QUOTE(dserban @ Jun 30 2007, 02:14 PM)
Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.

Congrats. Wutske is right, the error you did was changing the default gateway when adding your second network.
Basically, when you have a computer correctly connected to the worldwide network, like your PC which had a correct default gateway and a DNS, the standard thing to do is to leave that working part continue working.
So, when you add a second network (that is what you do when you activate your second NIC adapter) you should not remove your default gateway, replacing the correctly working one by a non-working default gateway.
The default gateway is your wireless router, your wireless router must remain your default gateway.
So, when you manually add other NIC's to this computer, please feel free to give them private IP addresses, this is correct, simply write down nothing in the default gateway field, leave this field blank, and the new network will start working correctly without disturbing you old network which will continue working as usual.
By the way, don't be confused having this problem : this kind of problem is the problem I am currently experiencing at office : my collegues continuously change their default gateways, and then start complaining because their network does not work any more !

This post has been edited by yordan: Jun 30 2007, 01:29 PM


--------------------




Feedbacker

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts May 22 2008, 06:20 AM Post #7


Newbie [ Level 1 ]


Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



Windows XP Pro PC:
IP: 10.0.0.X
Gateway: 10.0.0.1
On LOCAL network 10.0.0.1/255.255.255.0

Windows 2003 Server:
External IP: ww.Xx.Yy.Zz
Internal IP: 192.168.1.25
Gateway: 192.168.1.1 (the one corresponding to the external IP)
On REMOTE network 192.168.1.1/255.255.255.0

The router 192.168.1.1 is connecting via VPN to another router 192.168.2.1/255.255.255.0.

The Windows 2003 Server (192.168.1.25) has a Host-to-host VPN connection to another remote external Windows 2003 Server: 192.168.200.1/255.255.255.255
From the Windows 2003 Server I can successfully access the remote server 192.168.200.1 as well as the entire 192.168.2.0/24 network (router-to-router VPN) without problems.

WHAT I AM TRYING TO ACHIEVE:
I connect the local PC (10.0.0.X) via VPN to the Windows 2003 Server on the remote network. I can see 192.168.1.0/24 without problems.

If I select the 'Use default gateway on remote network' on the local PC VPN connection (Networking->TCP/IP Protocol->Properties->Advanced), ALL TRAFIC GOES OUT from the remote Windows 2003 Server (192.168.1.25), regardless of the the IP (except, of course, traffic to 10.0.0.0/24). As such, I can ping/access remote external server 192.168.200.1 and the entire 192.168.2.0/24 network via 192.168.1.25's routing.

However, if I uncheck the 'Use default gateway on remote network' on the local PC's VPN connection, I can only access 192.168.1.0/24 and I CANNOT ACCESS 192.168.200.1 or 192.168.2.0/24.

I have been 'playing around' with the ROUTE ADD command, but to no avail.

Any ideas/suggestions?

Thanks in advance for your time!
-Costa

-reply by costa


Feedbacker

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 4 2008, 11:34 AM Post #8


Newbie [ Level 1 ]


Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus


Feedbacker

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 4 2008, 11:34 AM Post #9


Newbie [ Level 1 ]


Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus

Reply

Latest Entries

Habble
To answer the original question about static addresses, in both Linux and Windows, the key files are "hosts" and "lmhosts". In Linux, they are usually in /etc/. In Windows 2000, they are in \WINNT\system32\drivers\etc\. In Windows, the lmhosts file defines the decimal addresses corresponding to given names, for example:
CODE
192.168.1.11 alpha #PRE
192.168.1.12 beta #PRE
192.168.1.13 gamma #PRE
The "#PRE" tag instructs Windows to load this table before trying to resolve any addresses. If you use such static assignments, you need to have this lmhosts file in EACH of your computers, since your DHCP won't know these addresses. In Linux, there are additional options on these lines that vary with different Linux flavors.

The hosts file is where you can define external translations (outside your lan), and also where you can "blackhole" websites. For example if you wish to identify Fred's computer and also prevent your computer from visiting www.spammaker.com, insert lines that read:
CODE
64.22.1.1 fred
127.0.0.1 spammaker.com
That instructs your computer to look at 64.22.1.1 for http://fred/ and only inside itself for any web address that contains "spammaker.com".
Habble Posted Jul 2 2008, 02:50 AM
THIS IS ALL RIGHT I AGREE 100%

Here's my setup:

My PC connects to my Internet facing wireless router via a USB-pluggable wireless NIC, the IP address of which is 192.168.1.2 (netmask 255.255.255.0).
The IP address of my router's LAN port is 192.168.1.1.

The NIC which is embedded in the motherboard has remained disabled so far.

Everything works OK, but I recently got a hold of a crossover cable, and I started using it to connect a laptop to my PC.
So I enabled the embedded NIC on the PC and gave it an IP address of 192.168.2.2 (netmask 255.255.255.0, default gateway 192.168.2.2).
The laptop's IP address is 192.168.2.1.

My only objective is to able to exchange files between my PC and my laptop.
I do not want to connect my laptop to the internet, either directly or indirectly.

And here comes my problem:
After setting up the (crossover cable) connection between the two, I tried going out to the internet again on my PC, and failed.

I tried using tracert to troubleshoot what's going on, and my gut feeling is that as soon as I enabled the embedded NIC on the PC, it seems to think "Oh, this is my new Internet, let me send all the requests from the browser to this new default gateway 192.168.2.2".

One solution that comes to my mind is to use static routes. I know what they are in theory, but I don't know how to issue the commands.
If anyone has experience using static routes in Windows XP, I would appreciate a few pointers in the right direction.

Also, if there is a better / more efficient / more elegant solution, I would very much like to hear it.

QUOTE


--------------------

There are only 10 types of people in the world: those who understand binary and those who don't.


faulty.lee

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 08:29 AM Post #2


Premium Member


Group: [HOSTED]Posts: 437
Joined: 5-November 06
Member No.: 17,016



There's 3 things you can try, non of them belongs to static route.

1. Set a permanent DNS in the DNS setting of wireless NIC and set the gateway of both NIC to your router's IP

2. Bridge the connection of both your NIC. You can select the 2 NIC, then right click, Bridge Connection. That way, you only need to set 1 IP address for the bridged connection. So, both your NIC will have the same IP, and that should help fix the issue, also it will automatically routes internet on your laptop(if i'm not mistaken, as i have tried the same thing before, quite sometime back)

3. Setup internet sharing, to share your internet to your laptop. That way, windows might figure out which NIC is actually connected to the internet.

Let me know if any of that works. I seldom play with networking lately, will be good to refresh my theory a bit.

Good Luck




wutske

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 08:32 AM Post #3


Super Member


Group: [HOSTED]
Posts: 969
Joined: 2-August 05
From: Kapellen (Antwerp, Belgium)
Member No.: 7,585



Try these settings:
Wireless Nic:
IP: same
Netmask: same
Default Gateway:192.168.1.1

Wired Nic;
IP: 192.168.1.3
Netmask: 255.255.255.0
Default gateway: none

Laptop Nic:
IP: 192.168.1.4
Netmask: 255.255.255.0
Default gateway: none


This normaly should give you internet and connection with your laptop. If windows doesn't immediatly shows you the laptop, then try accessing manualy in Explorer (adress: \\192.168.1.4 )


--------------------


PCs: self-made Barton2500+ | Dell Inspiron 6400
OS'es: WinXP SP1 + openSuse 10.3 + Windows Vista Home Premium + Dell Media Direct (=XP Media Center like)
Chat: Mercury Messenger
Browser: Opera9
Java: 1.6
AV: Avast
FW: Sygate PF + Comodo PFP


dserban

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 08:33 AM Post #4


Premium Member


Group: [HOSTED]
Posts: 286
Joined: 17-June 07
Member No.: 22,702



I just discovered the command "route print", so I am posting below the "before" and "after" snapshots:

- Before enabling the embedded NIC (Internet up):


CODE
===========================================================================Inter

face List0x1 ........................... MS TCP Loopback interface0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport========================================================================

==============================================================================Ac

tive Routes:Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25 192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25 192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25 224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25 255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1Default Gateway: 192.168.1.1=====================================================================

======Persistent Routes: None

- After enabling the embedded NIC (Internet down):


CODE
===========================================================================Inter

face List0x1 ........................... MS TCP Loopback interface0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport0x10004 ...00 30 05 45 15 5a ...... Intel® PRO/100 VE Network Connection - Packet Scheduler Miniport========================================================================

==============================================================================Ac

tive Routes:Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25 0.0.0.0 0.0.0.0 192.168.2.2 192.168.2.2 20 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25 192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25 192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25 192.168.2.0 255.255.255.0 192.168.2.2 192.168.2.2 20 192.168.2.2 255.255.255.255 127.0.0.1 127.0.0.1 20 192.168.2.255 255.255.255.255 192.168.2.2 192.168.2.2 20 224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25 224.0.0.0 240.0.0.0 192.168.2.2 192.168.2.2 20 255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1 255.255.255.255 255.255.255.255 192.168.2.2 192.168.2.2 1Default Gateway: 192.168.2.2=====================================================================

======Persistent Routes: None



--------------------

There are only 10 types of people in the world: those who understand binary and those who don't.


dserban

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 12:14 PM Post #5


Premium Member


Group: [HOSTED]
Posts: 286
Joined: 17-June 07
Member No.: 22,702



Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.


--------------------

There are only 10 types of people in the world: those who understand binary and those who don't.


yordan

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 30 2007, 01:28 PM Post #6


Way Out Of Control - You need a life


Group: [MODERATOR]
Posts: 1,884
Joined: 16-August 05
Member No.: 7,896



QUOTE(dserban @ Jun 30 2007, 02:14 PM)
Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.

Congrats. Wutske is right, the error you did was changing the default gateway when adding your second network.
Basically, when you have a computer correctly connected to the worldwide network, like your PC which had a correct default gateway and a DNS, the standard thing to do is to leave that working part continue working.
So, when you add a second network (that is what you do when you activate your second NIC adapter) you should not remove your default gateway, replacing the correctly working one by a non-working default gateway.
The default gateway is your wireless router, your wireless router must remain your default gateway.
So, when you manually add other NIC's to this computer, please feel free to give them private IP addresses, this is correct, simply write down nothing in the default gateway field, leave this field blank, and the new network will start working correctly without disturbing you old network which will continue working as usual.
By the way, don't be confused having this problem : this kind of problem is the problem I am currently experiencing at office : my collegues continuously change their default gateways, and then start complaining because their network does not work any more !

This post has been edited by yordan: Jun 30 2007, 01:29 PM


--------------------




Feedbacker

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts May 22 2008, 06:20 AM Post #7


Newbie [ Level 1 ]


Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



Windows XP Pro PC:
IP: 10.0.0.X
Gateway: 10.0.0.1
On LOCAL network 10.0.0.1/255.255.255.0

Windows 2003 Server:
External IP: ww.Xx.Yy.Zz
Internal IP: 192.168.1.25
Gateway: 192.168.1.1 (the one corresponding to the external IP)
On REMOTE network 192.168.1.1/255.255.255.0

The router 192.168.1.1 is connecting via VPN to another router 192.168.2.1/255.255.255.0.

The Windows 2003 Server (192.168.1.25) has a Host-to-host VPN connection to another remote external Windows 2003 Server: 192.168.200.1/255.255.255.255
From the Windows 2003 Server I can successfully access the remote server 192.168.200.1 as well as the entire 192.168.2.0/24 network (router-to-router VPN) without problems.

WHAT I AM TRYING TO ACHIEVE:
I connect the local PC (10.0.0.X) via VPN to the Windows 2003 Server on the remote network. I can see 192.168.1.0/24 without problems.

If I select the 'Use default gateway on remote network' on the local PC VPN connection (Networking->TCP/IP Protocol->Properties->Advanced), ALL TRAFIC GOES OUT from the remote Windows 2003 Server (192.168.1.25), regardless of the the IP (except, of course, traffic to 10.0.0.0/24). As such, I can ping/access remote external server 192.168.200.1 and the entire 192.168.2.0/24 network via 192.168.1.25's routing.

However, if I uncheck the 'Use default gateway on remote network' on the local PC's VPN connection, I can only access 192.168.1.0/24 and I CANNOT ACCESS 192.168.200.1 or 192.168.2.0/24.

I have been 'playing around' with the ROUTE ADD command, but to no avail.

Any ideas/suggestions?

Thanks in advance for your time!
-Costa

-reply by costa


Feedbacker

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 4 2008, 11:34 AM Post #8


Newbie [ Level 1 ]


Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus


Feedbacker

View Member Profile
Add as Friend
Send Message
Find Member's Topics
Find Member's Posts Jun 4 2008, 11:34 AM Post #9


Newbie [ Level 1 ]


Group: Members
Posts: 0
Joined: 1-November 07
Member No.: 25,869



Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus

iGuest Posted Jun 4 2008, 11:34 AM
Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus
iGuest Posted Jun 4 2008, 11:34 AM
Can you help me with this?
How Do I Create Static Routes In Windows Xp?

I have this scenario:

- 1 public IP address
- 1 cable modem
- 1 router (4 ports)
- 4 computers with private addresses connected to the router

Everything works flawlessly.
I want to connect a laptop with a wireless network card to the internet. My router is not wireless, and all it's 4 ports are used.
To be able to connect the laptop, I bought a wireless network card and put it in one of the computers. I want to use this computer (Windows XP Professional) as a router/gateway for the wireless network. At the moment, the card is installed properly, as far as I can see in Windows. I created a new wireless network named xyz, which I can see from the laptop, but, but the laptop is unable to browse the internet.
The packet's path should be like this, I think: it should come from my isp, through the modem, router, pc's wired network card, pc's wireless network card, laptop.

Please tell me how should I set the IP addresses for the wireless network. The existing wired network works fine now.

-reply by theMagus
iGuest Posted May 22 2008, 06:20 AM
Windows XP Pro PC:
IP: 10.0.0.X
Gateway: 10.0.0.1
On LOCAL network 10.0.0.1/255.255.255.0

Windows 2003 Server:
External IP: ww.Xx.Yy.Zz
Internal IP: 192.168.1.25
Gateway: 192.168.1.1 (the one corresponding to the external IP)
On REMOTE network 192.168.1.1/255.255.255.0

The router 192.168.1.1 is connecting via VPN to another router 192.168.2.1/255.255.255.0.

The Windows 2003 Server (192.168.1.25) has a Host-to-host VPN connection to another remote external Windows 2003 Server: 192.168.200.1/255.255.255.255
From the Windows 2003 Server I can successfully access the remote server 192.168.200.1 as well as the entire 192.168.2.0/24 network (router-to-router VPN) without problems.

WHAT I AM TRYING TO ACHIEVE:
I connect the local PC (10.0.0.X) via VPN to the Windows 2003 Server on the remote network. I can see 192.168.1.0/24 without problems.

If I select the 'Use default gateway on remote network' on the local PC VPN connection (Networking->TCP/IP Protocol->Properties->Advanced), ALL TRAFIC GOES OUT from the remote Windows 2003 Server (192.168.1.25), regardless of the the IP (except, of course, traffic to 10.0.0.0/24). As such, I can ping/access remote external server 192.168.200.1 and the entire 192.168.2.0/24 network via 192.168.1.25's routing.

However, if I uncheck the 'Use default gateway on remote network' on the local PC's VPN connection, I can only access 192.168.1.0/24 and I CANNOT ACCESS 192.168.200.1 or 192.168.2.0/24.

I have been 'playing around' with the ROUTE ADD command, but to no avail.

Any ideas/suggestions?

Thanks in advance for your time!
-Costa

-reply by costa
yordan Posted Jun 30 2007, 01:28 PM
QUOTE(dserban @ Jun 30 2007, 02:14 PM)
Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.

Congrats. Wutske is right, the error you did was changing the default gateway when adding your second network.
Basically, when you have a computer correctly connected to the worldwide network, like your PC which had a correct default gateway and a DNS, the standard thing to do is to leave that working part continue working.
So, when you add a second network (that is what you do when you activate your second NIC adapter) you should not remove your default gateway, replacing the correctly working one by a non-working default gateway.
The default gateway is your wireless router, your wireless router must remain your default gateway.
So, when you manually add other NIC's to this computer, please feel free to give them private IP addresses, this is correct, simply write down nothing in the default gateway field, leave this field blank, and the new network will start working correctly without disturbing you old network which will continue working as usual.
By the way, don't be confused having this problem : this kind of problem is the problem I am currently experiencing at office : my collegues continuously change their default gateways, and then start complaining because their network does not work any more !
dserban Posted Jun 30 2007, 12:14 PM
Super!

It works.

I tried the approach that wutske suggested, because it is more attuned to what I am trying to accomplish, but many thanks to both of you for putting in the effort to answer my question.
dserban Posted Jun 30 2007, 08:33 AM
I just discovered the command "route print", so I am posting below the "before" and "after" snapshots:

- Before enabling the embedded NIC (Internet up):


CODE
===========================================================================Inter
face List0x1 ........................... MS TCP Loopback interface0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport========================================================================
==============================================================================Ac
tive Routes:Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25 192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25 192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25 224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25 255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1Default Gateway: 192.168.1.1=====================================================================
======Persistent Routes: None

- After enabling the embedded NIC (Internet down):


CODE
===========================================================================Inter
face List0x1 ........................... MS TCP Loopback interface0x10003 ...00 14 d1 c1 42 c5 ...... 802.11g Wireless Network Adapter - Packet Scheduler Miniport0x10004 ...00 30 05 45 15 5a ...... Intel® PRO/100 VE Network Connection - Packet Scheduler Miniport========================================================================
==============================================================================Ac
tive Routes:Network Destination Netmask Gateway Interface Metric 0.0.0.0 0.0.0.0 192.168.1.1 192.168.1.2 25 0.0.0.0 0.0.0.0 192.168.2.2 192.168.2.2 20 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 1 192.168.1.0 255.255.255.0 192.168.1.2 192.168.1.2 25 192.168.1.2 255.255.255.255 127.0.0.1 127.0.0.1 25 192.168.1.255 255.255.255.255 192.168.1.2 192.168.1.2 25 192.168.2.0 255.255.255.0 192.168.2.2 192.168.2.2 20 192.168.2.2 255.255.255.255 127.0.0.1 127.0.0.1 20 192.168.2.255 255.255.255.255 192.168.2.2 192.168.2.2 20 224.0.0.0 240.0.0.0 192.168.1.2 192.168.1.2 25 224.0.0.0 240.0.0.0 192.168.2.2 192.168.2.2 20 255.255.255.255 255.255.255.255 192.168.1.2 192.168.1.2 1 255.255.255.255 255.255.255.255 192.168.2.2 192.168.2.2 1Default Gateway: 192.168.2.2=====================================================================
======Persistent Routes: None

wutske Posted Jun 30 2007, 08:32 AM
Try these settings:
Wireless Nic:
IP: same
Netmask: same
Default Gateway:192.168.1.1

Wired Nic;
IP: 192.168.1.3
Netmask: 255.255.255.0
Default gateway: none

Laptop Nic:
IP: 192.168.1.4
Netmask: 255.255.255.0
Default gateway: none


This normaly should give you internet and connection with your laptop. If windows doesn't immediatly shows you the laptop, then try accessing manualy in Explorer (adress: \\192.168.1.4 )
faulty.lee Posted Jun 30 2007, 08:29 AM
There's 3 things you can try, non of them belongs to static route.

1. Set a permanent DNS in the DNS setting of wireless NIC and set the gateway of both NIC to your router's IP

2. Bridge the connection of both your NIC. You can select the 2 NIC, then right click, Bridge Connection. That way, you only need to set 1 IP address for the bridged connection. So, both your NIC will have the same IP, and that should help fix the issue, also it will automatically routes internet on your laptop(if i'm not mistaken, as i have tried the same thing before, quite sometime back)

3. Setup internet sharing, to share your internet to your laptop. That way, windows might figure out which NIC is actually connected to the internet.

Let me know if any of that works. I seldom play with networking lately, will be good to refresh my theory a bit



None of this helps me can any one else help me plz

Reply


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Recent Queries:-
  1. xp define static route - 1.01 hr back. (1)
  2. set static route in pc - 3.36 hr back. (1)
  3. set static route on pc - 5.15 hr back. (1)
  4. static route file xp - 19.57 hr back. (1)
  5. windows xp add route permanently - 21.05 hr back. (1)
  6. windows xp pro static routing - 22.26 hr back. (1)
  7. make a persistent route in xp - 24.87 hr back. (1)
  8. example xp static route - 28.18 hr back. (1)
  9. lmhost static route - 28.38 hr back. (1)
  10. windows static routes - 28.55 hr back. (1)
  11. to add a new route in windows xp - 29.74 hr back. (1)
  12. windows xp persistent route - 30.41 hr back. (1)
  13. add static routers windows xp - 32.11 hr back. (1)
  14. create routes windows 2003 - 32.14 hr back. (1)
Similar Topics

Keywords : create, static, routes, windows, xp,

  1. Sharing Broadband Connection Between Mac And Windows
    (6)
  2. Help In Network With Windows 98 SE
    (6)
    Hi friends! I have a network with windows 98 SE, in the network I have 3 computers, 2 desktop
    Pc's and 1 Laptop. The desktop computers are connected using RJ45 connectors and the Laptop with
    wireless, the 3 computers can use internet and with the desktop Pc's I can share files, but with
    the Laptop not but when I do a ping the answer is correct. How can I share files between the 3
    computers?? Thanks!!!....
  3. What Replaces .netrc When Using Windows Xp ?
    In Unix and in Linux, there is a network configuration file named .net (4)
    When I am on a Unix system or on a Linux system, I use a configuration file named ".netrc", which
    stores my most used ftp settings. Is there an equivalent for ftp under Windows XP ? I tried
    testing/guessing, I failed, it's not net.rc nor .netrc. It's not horribly necessary, but I
    would like to know what replaces .netrc on a Windows machine.....
  4. Windows 2000 Prompt Authentication
    (0)
    Hey guys i need some help here. Well i've installed windows 2k for use as archive server. Well
    i've created the user account and set the premissions, so far its all ok. But now i try to
    connect to shared folder in the archeive server and he ask's me a 1st prompt ( only if is the
    1st time i log in ) and i logon using a any account witch i ve made before. Well everything is ok,
    but next time i access to server archive folder he doesn't ask for authentication, so i only can
    enter in folder1 using Cpu1. If i desire to enter into my folder using another comput....
  5. Configure Laptop To Work On Static And DHCP
    (1)
    Hi, I want to configure a laptop so it will work in both static and dynamic (DHCP) environments. I
    have setup my home network using static IP addressing but the college uses dynamic addressing. Home
    is using wireless and I guess if it's used at the college, it will probably be wireline. Was
    thinking about this over the other day and just want to verify if this will work (since the laptop
    doesn't belong to me...and I don't have access to it a lot of times). If I set the default
    connection (TCP/IP Properties) to be automatic obtain IP and the alternate conn....
  6. Windows Live Custom Domain: Question
    (4)
    Most of you would have been to the recently opened site by Microsoft : Windows Live Custom Domains
    Beta . Things that they give you : 1. 20 e-mail accounts in your domain 2. Each account having a
    250MB space 3. Junk mail filter protection 4. Virus Scanning. 5. Access it with Messenger, MSN
    Spaces etc. Now my problem. I entered my domain of astahost : XXXXX.astahost.com. I get the
    following error : The domain name entered is not available for use with this service. . I type in
    : astahost.com , and it works. What would i need inorder to work my domain on this ? Re....
  7. Disable NetBios (Windows) And Increase Security
    Increase your computer security (4)
    Disable NetBIOS Increase your security If NetBIOS is enabled Your Files and Folders , Work
    Group-name , Computer name , Loging- name will be shared in Internet in Windows 2000 1- open
    Windows Explorer 2- Right click on My Network places and select properties 3- Click Internet
    protocol TCP/IP and select properties 4- Click on Advanced and then WINS 5- Select Disable NetBIOS
    over TCP/IP and click ok 6- Restart your computer If Windows displays “This connection has an empty
    … " message, ignore it and click ok In Windows 95/98/ME 1- open Windows Explorer 2- ....
  8. Login To Network Without Password
    Windows XP (3)
    Login to Network without password Windows XP does not allow network users to access without
    password To allow network users to access without password 1-click Start > Run > and type gpedit.msc
    to run Group Policy 2- Go to Computer Configuration > Windows Settings > Security Settings > Local
    Policies > Security Options 3- In right panel, right click “Accounts: Limit local account use of
    blank passwords to console login only” and select properties and select Disable /cool.gif'
    border='0' style='vertical-align:middle' alt='cool.gif' /> ....
  9. Sharing Files In Windows Xp Home
    I always get an "access denied mesage" (15)
    when trying to access another computer's shared files on my home network i recieve an error
    message " is not accessable. You might not have permission to use this network resource. Contact
    the administrator of this server to find out if you have access permissions. Access denied" anyone
    know why I am getting this message?....
  10. Networking With Linux & Windows
    (4)
    Could i run Linux operating system on my server and have my other 2 computers running on windows xp
    professional, as i have heard that it can be a right pain in the groin /laugh.gif' border='0'
    style='vertical-align:middle' alt='laugh.gif' /> to network together. So would it be alright to do
    this or will it stop my internet.....
  11. Linux/windows Network.
    Help Me Please! (5)
    Ok, I Have 3 computer In My House. I Had Them All Setup and Working Fine... But Now I Want to switch
    one of them to linux, but still share a connection. Ok This Is How My Network Works.... 1st
    Computer: Connection Computer: 2nd Computer: XP Box: 3rd Computer: Linux: I Have The Network Up and
    running Fine, But I Have Tried To Put Linux On My Network Before.. And it couldn't connect to
    the net, share files, or anything.. Is There Something That i Have TO Config? Or What? If you
    Know How TO Help Me... Please Do!....
  12. Windows Security
    security (20)
    Windows XP iis not secure in internet nowadays. I would like you to tell me the reasons for that.....

    1. Looking for create, static, routes, windows, xp,

Searching Video's for create, static, routes, windows, xp,
advertisement




How Do I Create Static Routes In Windows Xp?



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE