Networking With A Wireless Network Adapter

Pages: 1, 2
free web hosting
Free Web Hosting > Computers & Tech > Networking

Networking With A Wireless Network Adapter

ElFoReal
So my question is this,
I have a desktop pc connected to the net through a wired modem.
I also have a free (as in not used) wireless network adapter build in to the desktop pc which I want to share with a laptop.
The goal is to have a live internet connection on the laptop.
What are the steps I need to follow to achive my goal.
Thnx in advance

EDIT: additional info, I have winxp installed on the desktop and windows vista installed on the laptop

Reply

ElFoReal
Is there realy nobody who can help me out here?
c`mon.....

Reply

Jimmy89
I think the only way you can do it is to share the first connection (the desktop and the wired connection) by going to
Control Panel > Network Connections > Your Wired Network Adapter > Properties > Advanced Tab > Share Internet Connection.

You then have to setup an ad hoc network between the two wireless adapters. I think that then the laptop will get internet through the desktop (this means that the desktop must be on whenever you want to use the internet on the laptop)

I am not too sure on how to setup ad-hoc networks, but have a look at http://www.microsoft.com for information on how to set up an ad hoc wireless network

Good Luck
-jimmy

Reply

Grafitti
here are some threads dealing with this:
CODE
http://forums.techarena.in/showthread.php?t=742908
http://www.velocityreviews.com/forums/t515095-ad-hoc-network-between-xp-and-vista.html

apparently though ad hoc netwroking only supports WEP encryption, so you might want to make sure it's not in range of any spots other can get on.

Reply

BuffaloHELP
The trouble with sharing internet connection is that the host (your desktop pc) must be on when you want to surf the internet using your client (laptop).

I think the easiest solution is to go get a wireless router (price have fallen so that you can pick one up for about $50) and let the router do all the work. You'll be up and running both computers to the internet in no time.

Reply

kelvinmaki
Price definitely have drop. And yes, its recommend to get a router for the internet sharing. But even better, get a router with self downloading features. So when you computer is off. You can still download you files. wink.gif

Reply

Jimmy89
Speaking of self-downloading features, I saw a external hard drive that has a built in torrent downloader (accessible via web interface) that can download any torrent and save it to the hard drive. I also saw a router that has a analogue speed gauge that tells you how much you are currently downloading/uploading tongue.gif

Reply

polarysekt
yeah i moved away from windows internet connection sharing quick when it wanted me to set the IP of my server system to 192.128.0.1 -- which happened to be the unchangeable IP address of the modem to which I was already connecting wirelessly...

plus, i still wanted to host my little apache server on said system for access by other networked computers... but every time i would enter the IP... good old router info came up...

Reply

Grafitti
QUOTE(polarysekt @ Dec 5 2007, 03:59 AM) *
yeah i moved away from windows internet connection sharing quick when it wanted me to set the IP of my server system to 192.128.0.1 -- which happened to be the unchangeable IP address of the modem to which I was already connecting wirelessly...

plus, i still wanted to host my little apache server on said system for access by other networked computers... but every time i would enter the IP... good old router info came up...

Actually that's not a stumbling block.... when setting up ICS windows does automatically set the gateway/IP to 192.168.0.1, but then you can change it. I know because I have two internet connections, one of which is shared and the other isn't. The unshared one has to be set to 192.168.0.1, but when setting up ICS it sets the other one to that IP. So I just go into the shared network properties, and change that IP to something else.. in my case, 192.168.0.4 and then I go and set the other internet IP back to 192.168.0.1
Then on the other computers that will be connecting to the shared connection, I set their gateways and DNS to 192.168.0.4 and they connect straight through that one... no problems so far.

 

 

 


Reply

yordan
OK, the problem is twofolds, let's clarify each one separately.
If we look carefully, we see that ElfoReal want simultaneously two things :
- interconnect his two computers using wifi.
- surf on the internet on the the second computer which has no direct link to the external network.
So, let's first look a the interconnect thing, it's the easiest one.
The internet-capable computer has a not-used wifi adapter, let's use it. Configure this adapter as Ad-hoc (meaning not slave from an accesspoint), and give it a fixed-ip address.
Give the IP address the following value : 12.3.4.5.
This means that your PC has now two networks : the "external" network, which can reach Internet, and your "very private" network, where it has the address 12.3.4.5.
Now, configure your second PC's Wifi adapter as Ad-Hoc, it should be able to see the other adapter. Give this adapter the following address : 12.3.4.6.
This means that the second PC has a single Ethernet adapter, it is on the "12.3.4" network and it has the address 6 on this network. And it can ping the other PC which has the addess 5 on the same network.
In order to verify that, open a Windows command-line window, and type :
ping -n 3 12.3.4.5
Now, the first step is finished, the two computers are interconnected, they can share files using the Microsoft sharing system (for instance in a command-line window on the second system you type "net use * \\12.3.4.5\myfolder" and the shared folder named "myfolder" from the 12.3.4.5 will be usable on the 12.3.4.6 computer.

Now comes the second very interesting point.
On the first computer, which is able to access the internet, the one which has the very private address 12.3.4.5, you can install a proxy. The easyiest to use is privoxy, it's free and powerful, you can download it from here : http://sourceforge.net/project/showfiles.php?group_id=11118
You insall it very easily, you will see it working imediately. Simply it will serve only the local computer. But you can ask it to serve the very private network.
Use the privoxy configuration tool, click Edit configuration file, look at the line saying "listen" something, and add the following line :

listen-address 12.3.4.5:8080
Do not forget to save the configuration and restart privoxy.
Now, on your very private network, you have a proxy server.

Then, this proxy server can be used for your second PC, the one which does not have access to internet and have the 12.3.4.6 IP address.
On this PC, open Microsoft Internet explorer and go to "tools", "Internet Options", Connexions, network Parameters, choose "use a proxy" and give as proxy address 12.3.4.5 and proxy port 8080.
You see that your first PC has a proxy serving listening for queries queries on the 8080 port of the 12.3.4.5 address, and that the second PC will send it's queries to the server at the IP address 12.3.4.5, port 8080.
Now, you are able to surf on the Internet on the second PC ! type www.google.com on the second PC.
Then, rush to the first one, go to the privoxy console, and you will se "request for www.google.com", accepted.
Of course, this will work for the "normal" sites, the ones your grandma would see you surfing on.
If you happen to go to www.f****ckand******.com, you will see at the Privoxy console "request ****.com : crunch", and at the client PC you will see "proxy error, could not reach this site".
Hope this helped, I like this way of doing this because you have two different operations on two different problems : you first interconnect the two PC's, which is a very basic thing which should have no problem. Then you install privoxy, which console will explain the problems related to safe-surfing rules.
Of course, you should also have a look at the firewall settings, generally what I do is disabling the firewalls while testing my things, and then re-enable the firewalls and see which system or which processes cannot cross the firewall (like"ping") and allow the concerned systems or processes to work correctly using the firewall.
Hope this helped.
Yordan

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.

Pages: 1, 2
Recent Queries:-
  1. privoxy dlink configuration - 54.07 hr back. (1)
  2. network - 221.62 hr back. (1)
Similar Topics

Keywords : networking wireless network adapter

  1. Need Help With Cisco Networking - (2)
  2. Wireless: Bypassing Mac Filtering - Tutorial (10)
    Sometimes you scan the neighborhood for the wireless connections, you see open connections but can
    not connect to them. Well this is possible because they use MAC filtering to secure up their
    network. I will try to explain how to bypass this protection NOTE: This is for EDUCATION purpose
    only to show you it is possible to bypass this security. I am not responsible for unauthorized use
    of these information. Requirements : 1- You need some tool for sniffing the traffic. I suggest
    using Aircrack-ng (http://www.aircrack-ng.org/) 2- You need some tool to change your MAC ad...
  3. Cracking Wireless Access Point Password? - Is it possible to crack the system setup password on wireless routers? (22)
    Is it possible to crack the system setup password for a wireless access point - wirelessly? I
    understand how to use tools like aircrack and airsnort to crack the network password used by
    clients, but this will only grant you the client password to access the network. If there is a way
    to gain access to the system setup password of a wireless router, please explain the process to me,
    so that I can take all possible precautions to try to avoid this happening to my new wireless
    network... Thanks....
  4. Free Remote Wireless Server? - (1)
    Hi all. I need a free service to manager users and bandwidth to Wireless service to my Town? Anyone
    know a site with this options?? Thanks....
  5. Wireless Router - Wireless Router Networking (11)
    Hey boys and girls! this is my first post on these boards so please be nice 2 me! I have
    recently purchased a SMC Wireless route and its working fine! My only question is: Is it
    possible to make a network over the router, or can it only be used to route the internet to other
    computers! I would like to share files on my main computer with other computers in my home
    network and havnt been successful in finding a way to do so yet! Any help would be apriciated
    greatfuly! Mentalsatan (Aaron)...
  6. What Are The Risks Of Unsecure Wireless Networks - What risks are they at? (23)
    Hi, I was just wondering what problems persist for a wireless network if they are unsecured. I know
    the internet connection could be used by an unauthorised source but what else could an unauthorised
    source do?...
  7. Wireless Networking: Recommended MTU Setting ? - (5)
    Does anyone know how I would be able to change my MTU, Maximum Trasmitting Units on a Wireless
    networking router. In particularly a Linksys super-g Router. I need to know to connect my xbox
    360 to the network. Thanks, CoLDFuSIoN...
  8. How To Connect Computers In A Wi-fi Network - Peer-to-peer connection? (10)
    My parents have been persuading me over and over again to do something about our wireless internet
    connection. No, its not that the router has any problems connecting the computers to the internet.
    My problem is that i want to connect my computers together to enable the sharing of files,
    programs, and most importantly, my printer. Unfortunately, I have no idea how to use the already set
    up wireless connection to link all the computers together. I've done networking with cables yeah
    but never with wireless. I've tried the wizards Windows XP provides to create ne...
  9. Networking Problems - (4)
    hey everyone...i was wondering if someone could help me with a problem we were trying to hook up a
    computer to my home network and realized that the network on the computer was a domain while the
    rest of ours at home were on a workgroup. so, i had the computer join my home work group instead of
    it's previous domain. the join was successful but once the computer restarted, we can now no
    longer log onto that computer! is there anyway to bypass the network logon? my father has
    extremely important work files on that computer, and we cannot log on! i tried canc...
  10. Wireless Routers - G G+ N (4)
    So in my house at the moment, my modem is running into a Belkin G+ router. We have a 2 story house
    and I sleep upstairs. My sister is also upstairs and her laptop picks up the internet... Just.
    I'm getting a new computer soon in my room and I want Wireless-N. I know wireless-N has more
    range/speed than G, but does this depend on the router? For example, will I be able to have
    faster/more stable internet than my sister because of the wireless-N card, or will I have to upgrade
    the router to an N series as well?...
  11. Listening To Music Over A Home Network - play the same music in two pc's at a time, or in the living room (16)
    Hi!!! well, my brother brought to my atention this product: Sonos:
    http://www.sonos.com/ It allows to control music in different zone of a home network. But i
    oposed to it because of it's price. so i'm trying to search for altenative solutions to this
    problem: ¿How can i listen to the same music in diferent pc stations at a same time? and the other
    problem: ¿How to stream music within my wireless network? (to listen to the music i play on my pc in
    my boombox per say) Can anyone come out with a good idea? PS: i forgot to say that the other sol...
  12. How To Do ICS Through Wireless? - how do i do it? (5)
    I just got myself a Dlink 108G wireless router, which i want to use to get all my computers online.
    The router has one Ethernet port that is supposed to be used for connecting to the DSL modem, and 4
    ports for direct connections to computers. Now it's all supposed to be plug and play, but for
    me it isn't that simple. I have a strange internet connection. my uplink is a DSL modem, and my
    downlink is a satellite cable connection, which is hardwired to a PCI slot in my computer. So if i
    want to share this connection, it doesn't quite work automatically, as i c...
  13. Unable To Connect My Comp. To A Wireless Network - (5)
    This happened to me many times before and i eventually had to call my uncle over to help me fix it
    up. Miraculously, it always works everytime he comes. So the last time he came, i watched carefully
    and made sure i remembered everything he did. It was not exactly complicated, and he set up the
    network manually for each computer. All he did was set up a wireless network using the wizard and
    then set up a home or small office network using another wizard. I did it again with my new desktop
    but it didn't work. Even though i set permissions for the firewall to allow it a...
  14. Connect Using Wireless And Wired Line - (16)
    Hi, is it possible for me to use both my wireless and wireline connections at the same time? I'm
    primarily online using my wireless PC card for the laptop. But sometimes I want to transfer some big
    files over to the other laptop I have in the house. Doing this through the wireless card takes ages
    since I'm also using the internet and the wireless transfer is limited to 54Mbps...in the ideal
    world /dry.gif" style="vertical-align:middle" emoid=" I want to use a network cable and connect
    between the two laptops using that method. That way it "should" give us al...
  15. Optimum Network Solution - (2)
    Any advice on what an optimum networking solution would be appreciated. We need to upgrade our
    server and wanted some expert advice on what our system should like. We are a design manufacturing
    company that relies heavily on our computer usage for design as well as interfacing with shop
    equipment. Server related issues can be enormously expensive Current: 15 workstations set up for
    remote access (3-5 users) server 2003 switch router linked photocopier/printers 2 Symantec
    anti-virus Tape Backup NAS backup DSL connection Thinking: Primary server (new) for file/printe...
  16. Tracing Broadcast Storms - A poorly managed or configured layer 2 switch may affect network laten (1)
    In some cases, a single layer 2 switching device configured improperly can cause serious
    connectivity problems, especially on a large network. Problems of this nature behave similar to
    Denial of Service (DoS) attacks but are slightly easier to track. Most intranets serve a central
    location where other internal networks are connected. Whether it is a remote off-site location or
    only accessible by taking an underground railway, it's usually the best place to start
    disconnecting backbones to find out which physical subnet is causing the problem. Broadcast storms
    are ge...
  17. Problem: Network Connection Fails Every 2 Mins - (12)
    From time to time, my internet connection falls out; It's been happening since i installed XP
    again. In the beginning it was 2 minutes after you started up the pc. Happily, now it's jsut
    when you download a big file or so. Does anyone know how to solve my problem?? Thanks, Michiel...
  18. Dialup On Wireless Network - cant get this dial up connection shared (18)
    I just purchased a D-Link wireless router, a DI-524. On my computer i connect through dial up to the
    internet. I have been trying to figure out how to share this connection through the router, but i
    haven't been able to because the router is made to hook up to an external modem through a WAN
    port. If there is a way to share my connection through this router, please help me with how. ...
  19. Networking Computers Without Modem? - (10)
    I don't know if that is the right title but here goes. The computer I'm on is connected to
    the internet via dial-up and has a printer connected to it. My computer has no internet connection,
    but has many graphics programs and things that I would like to transfer the the internet connected
    computer. I had the computers networked when I had highspeed internet and a cable modem, but
    I'm not sure how to network them now that their both not on the internet. So my question is,
    how do I network these two computers? (I know it's probably very simple)...
  20. Living Room PC Getting Low To No Wireless Signal - (14)
    For some reason my new custom built PC get low to no wireless internet signal in the living room.
    My sister says that she gets a lot of disconnects (last time I asked, about 10 disconnects
    throughout the day). It loses the wireless and after a while (no time table) it will connect back.
    The router is in the bedroom less than 30 feet away but there's like a wall or two in between.
    It shouldn't have caused this much problem though because I tried it on my OLD Windows 98 PC and
    it doesn't seem to have this problem. It always has an average wireless connecti...
  21. Won't Reconnect To Wireless Network Automatically Once Disconnected - (7)
    Just built my new computer and holding off on a new wireless PCI adapter for the time being. I have
    an old TrendNET USB Wireless Adapter that I plugged into this new computer. The problem I'm
    having now is that whenever I get disconnects from my DSL router Windows won't reconnect
    automatically /mad.gif" style="vertical-align:middle" emoid=":angry:" border="0" alt="mad.gif" />
    On my laptop (using the Netgear PC Card), it automatically reconnects once my DSL connection kicks
    back in. I've been living with this problem since my Internet Service Provider are o...
  22. Ad-hoc Networks (without Routers) - another way of getting wireless (0)
    Hey, i started learning about networks when i was playing with settings on my laptop. I discovered
    ad-hoc networks. Basically if you dont know hoe it works iv'e got built in woreless in my laptop
    but you can get an adapter, and ive got the internet from my moderm by an ethernet cable. I can
    connect to wireless and lan at once, and you can share the internet from the sending laptop. The
    only downside is that you have to keep the sending laptop turned on to receive it all the time. what
    you can do aswell is printer sharing, hard drive sharing (personally i have an exte...
  23. How Do I Improve Wireless Speed? - (14)
    We've setup a 54mbps wireless network, yet, the computers only work at a max speed of 9-11mbps.
    Is this the usual speed? I know overhead takes some of the bandwidth but seriously.. In addition,
    the router is just on the other side of the wall and I use the laptop by the router too....
  24. How To Keep The Internet Out From A Network ? - Using Dlink Giga lan switch, DSL ... see picture (9)
    So..in the picture below you can see the schematic I made. The internet enters in the first PC thru
    the DSL box , and I wanna connect the internet PC with the other PC's with a giga lan speed. For
    that I think I will need a second Lan card because the internet PC only has one lan port. Next I use
    the Dlink 8 ports Switch. But I don't want the internet go from the internet PC thru the Dlink
    and to the other PC's. Because I don't wanna put firewall and stuff on the other PC's.
    But maybe with this setup, the internet will just naturally stop at the firs...
  25. Extending A Wireless Network - Wireless Internet (2)
    Usually, to integrate WiFi capabilities into an existing LAN involves interfacing a wireless router
    with an existing LAN and configuring it as an access point. If it is meant for free public use, then
    it may not be necessary to encrypt the transmission, otherwise it is advisable to encrypt it with at
    leas a 64-bit WEP (Wireless Encryption Protocol) key. Depending on the gain in db of the attached
    antenna, the radius of wireless coverage can vary from 250meters to close to 450meters. Now comes
    the stage where we need to extend the coverage of the wireless transmission, t...
  26. Wired LAN Vs. Wireless LAN - What is the best? (26)
    I am not sure what is best Wired LAN Wireless " Post me any of your thoughts about WIRED V
    WIRELSS # I need to know!!!!!! /laugh.gif' border='0'
    style='vertical-align:middle' alt='laugh.gif' /> /smile.gif' border='0'
    style='vertical-align:middle' alt='smile.gif' /> ...
  27. Afs Adapter Problem - How do I remove it? (4)
    Ok, I am currently using Windows Vista ultimate, and for a while I was using OpenAFS. Well the
    problem happened that it added an adapter to my list of network adapters that is called
    'AFS' Now this would be ok, but I would like to remove it to speed up my system a little, as
    I am no longer using OpenAFS, and have since removed it... However, when I go to network
    connections, and i try and delete it. It asks if I would like to delete it, and I click ok, and then
    i get 'error deleting connection, the selected connection cannot be deleted' Now this
    connect...
  28. Advanced Network Questions - (3)
    I am running a wireless router. I connect my computer. I plug in my lan connected to a wired router.
    wired router is connected to anther computer. How can I get the internet to work for the last
    computer? Cross-over cables don't like my computers which is why im using a router. I just
    haven't been able to figure this out. Thanx for any help. Please check your posts for spelling
    mistakes ...
  29. Linksys Wireless B usb network adapter lag problem - in window XP (model WUSB11) (2)
    i wanna contribute something... so i posted this... recently i got a wireless network build in my
    home... its was so cool... i have a Linksys Wireless B usb network adapter (WUSB11) insert into my
    desktop which i will always use... den i wanted to test out my game... my all time favourite is the
    custom game of warcraft: frozen throne call defense of the ancient: allstar a.k.a dota allstar... i
    log into battle.net and joined a game... the game load and finally i was inside the game... it was
    so cool... but den... the problem came... my game just hang for 2-3 sec every so ...
  30. [help] Networking A Mac With Pc (file Share & Internet) - (1)
    Hello Folks, Long time since i last posted here. Anyways, I am having problems or rather having
    issues about networking my PC with the MAC at home through a Modem+wireless router. I have been
    using a normal DSL modem since i switched to broadband 5 years ago. A Lucent Cell Pipe 20A USB. I
    finally decided i needed to change my modem because firstly the drivers werent updated any more and
    secondly the product is discontinued. I bought a new Wireless ADSL2 + Modem router. This is what i
    was told to buy as i had no idea of what i needed for the upgrade. Its a NETGEAR DG834G...



Looking for networking, wireless, network, adapter

*RANDOM STUFF*





*SIMILAR VIDEOS*
Searching Video's for networking, wireless, network, adapter
Need Help
With Cisco
Networking
Wireless:
Bypassing
Mac
Filtering
Tutorial
Cracking
Wireless
Access Point
Password? Is
it possible
to crack the
system setup
password on
wireless
routers?
Free Remote
Wireless
Server?
Wireless
Router
Wireless
Router
Networking
What Are The
Risks Of
Unsecure
Wireless
Networks
What risks
are they at?
Wireless
Networking:
Recommended
MTU Setting
?
How To
Connect
Computers In
A Wi-fi
Network
Peer-to-peer
connection?
Networking
Problems
Wireless
Routers G G+
N
Listening To
Music Over A
Home Network
play the
same music
in two
pc's at
a time, or
in the
living room
How To Do
ICS Through
Wireless?
how do i do
it?
Unable To
Connect My
Comp. To A
Wireless
Network
Connect
Using
Wireless And
Wired Line
Optimum
Network
Solution
Tracing
Broadcast
Storms A
poorly
managed or
configured
layer 2
switch may
affect
network
laten
Problem:
Network
Connection
Fails Every
2 Mins
Dialup On
Wireless
Network cant
get this
dial up
connection
shared
Networking
Computers
Without
Modem?
Living Room
PC Getting
Low To No
Wireless
Signal
Won't
Reconnect To
Wireless
Network
Automaticall
y Once
Disconnected
Ad-hoc
Networks
(without
Routers)
another way
of getting
wireless
How Do I
Improve
Wireless
Speed?
How To Keep
The Internet
Out From A
Network ?
Using Dlink
Giga lan
switch, DSL
... see
picture
Extending A
Wireless
Network
Wireless
Internet
Wired LAN
Vs. Wireless
LAN What is
the best?
Afs Adapter
Problem How
do I remove
it?
Advanced
Network
Questions
Linksys
Wireless B
usb network
adapter lag
problem in
window XP
(model
WUSB11)
[help]
Networking A
Mac With Pc
(file Share
&
Internet)
advertisement




Networking With A Wireless Network Adapter



 

 

 

 

ADD REPLY / Got an Opinion! a humble request :-) RAPID SEARCH! Free Hosting [X]
Express your Opinions, Thoughts or Contribute your information that might help someone here.
Ask your Doubts & Queries to get answers.. "Together, We enlight each other!"
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