Wireless Bridge/Repeater ?


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu Wireless Bridge/Repeater ?
# 1  
Old 03-26-2012
Java Wireless Bridge/Repeater ?

I have a laptop running Ubuntu Netbook Remix.
What I want to do is use it to connect to my routers wifi, and then plug my desktop into the laptops ethernet port and be hooked to my routers network without any NAT or ICS.

Desktop>>>>>>Laptop/Wired>>Laptop/Wireless>>>>>Router

I want it to look like it is just another computer on the network, and I dont mind if the laptop is unusable as a client.

A script would be ideal lolz
# 2  
Old 03-27-2012
I'd bridge your WLAN and ethernet adapter into one device using brctl, then use your bridge as your network device instead of eth0 or wlan0 or what have you.

This'd mean disabling automatic configuration for those two devices somehow, and probably installing the bridge utilities. I know how to do this for my distro but not yours unfortunately...
# 3  
Old 03-27-2012
I tried that
brctl addbr br0
brctl addif eth0 wlan0

But my desktop deosnt get an ip from my router.

What am I missing?
# 4  
Old 03-28-2012
You may have to enable IP forwarding:

Code:
echo 1 > /proc/sys/net/ipv4/ip_forward

# 5  
Old 03-28-2012
Ok,
now do I need to give the bridge an IP?
Static or Dynamic?
# 6  
Old 03-28-2012
I'd configure it statically if possible. An IP on the same subnet as the network you wish to join to.

And the wireless adapter has to be connected to the wireless network, of course. That's not the same thing as the wireless getting an IP, they're separate processes, like the difference between plugging in a cable and running dhcpcd.
# 7  
Old 03-28-2012
Yeah I want to get all devices on the same network in the end here. I will have to make try this out when i get home from work today.
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. OS X (Apple)

Hostroute => Bridge and IP-Forwardings

Hello unix community, Could anyone tell me what is the macosx command for: 1) ip hostroute to bridge: ip route add 188.40.1.40/32 dev br0 (linux command) /32 ist for netmask? Because I use /29. 2) and IP-Forwarding: net.ipv4.ip_forward = 1 (linux command) I hope anyone could... (1 Reply)
Discussion started by: girlusingunyx
1 Replies

2. IP Networking

Create a Bridge for Qemu using only loopback

hello networking folks, i have 3 virtual machines that need to talk to each other How can i create a bridge to loopback ? -net tap,vlan=0,ifname=tap1 where tap1 is connected to lo:1 , tap2 is connected to lo:2 etc thx (0 Replies)
Discussion started by: TwiceDone
0 Replies

3. Solaris

[beginner] dladm create-bridge

hello everyone, I'm a new user and unix-beginner. I've just installer solaris 11 on my home server, disabled some services, created a fallback BE, enabled speedstep, etc and now I'm trying to create some zones. I'd like to have an exclusive ip zone and, as far as I know, I sould assignate it... (12 Replies)
Discussion started by: kimj
12 Replies

4. IP Networking

Connecting two machines with an ethernet bridge

Hello, I want to connect 2 machines with a bridge between them to control the traffic i.e. delay, loss rate, etc. I am using the following solution: 2 end machines with ip-adresses 192.168.0.8 and 192.168.0.16. 1 machine with 2 NIC interface cards: 192.168.0.40 and 192.168.0.41 I have... (9 Replies)
Discussion started by: abhishek2301
9 Replies

5. UNIX for Dummies Questions & Answers

smc2582w-b bridge and solaris 10 wireless network

Hellow, I have a smc2582w-b brigde/acces point whom i configured on my windows vista pc and it works i have wireless acces to my network. Then i plugged it in to my 420r enterprise and it doesn't give any link activity on the lan piece of my server and my bridge/AP when i plug the cable... (3 Replies)
Discussion started by: chelle007
3 Replies

6. IP Networking

SNMP in a Bridge device

Hello all, recently we've created a Bridge on a machine that was being used as an snmp, and we haven't assigned an IP for the bridge interface, instead we've used one extra NIC to make all the administrations, but SNMP is simply not working, any one have a clue on how to do this? Thanks. (0 Replies)
Discussion started by: Zarnick
0 Replies

7. UNIX for Dummies Questions & Answers

bridge on linux

Hello. I expirince some problems with bridging, i'm pretty new to that technology I've 2 nic's 1 - wireless rt2500 ra0 canyon cn511 card 2 - e100 intel, ifconfig ra0 up && iwconfig ra0 essid xxx channel x mode managed bring me wireless connection up then i do following: brctl addbr br0... (1 Reply)
Discussion started by: hachik
1 Replies
Login or Register to Ask a Question