Can i set up a bridge between two wireless interfaces (wlan1,wlan0)?The wlan1 is a wireless adapter tp link 722n. I am using Kali Linux 2.0.I tried using the brctl command but i get "can't add wlan1 to bridge br0: Invalid argument"
- Hot
- Active
-
Forum Thread: How to Install Kali Linux on Iphone or Ipad 25 Replies
5 hrs ago -
Forum Thread: How to Hack an Android Device with Only a Ip Adress 42 Replies
1 day ago -
Forum Thread: HELP I Created an Apk for Hacking My Phone Using Kali Linux in Virtual Box How Can I Install That Apk on My Phone 13 Replies
1 day ago -
Forum Thread: InstaBrute Traceback Error Plz Help 2 Replies
1 day ago -
Forum Thread: Get Victim's Exact Location Using TrackUrl 26 Replies
1 day ago -
Forum Thread: Hacking Facebook,Twitter,Instagram Account Passwords with BruteForce 159 Replies
2 days ago -
Forum Thread: Ext4 File System Error While Installing Kali Linux for Bootable Usb 3 Replies
5 days ago -
Forum Thread: Eml to PST Conversion 3 Replies
5 days ago -
Forum Thread: PORT FORWARDING IN JIOFI 18 Replies
5 days ago -
Forum Thread: How to Hack CCTV Private Cameras 65 Replies
6 days ago -
Forum Thread: Hack Instagram Account Using BruteForce 197 Replies
1 wk ago -
Forum Thread: How to Hack a Website to Edit It 19 Replies
1 wk ago -
Forum Thread: Android Doesn't Connect Back to Metasploit with App Payload? 18 Replies
1 wk ago -
Forum Thread: Kali Linux WiFi Problem? 41 Replies
2 wks ago -
How to: HACK Android Device with TermuX on Android | Part #1 - Over the Internet [Ultimate Guide] 173 Replies
2 wks ago -
Forum Thread: How to Start Listening Connections on Metaslpoit (WINDOWS) 8 Replies
2 wks ago -
Forum Thread: Grab Target's Webcam by Link 4 Replies
2 wks ago -
How to: HACK Android Device with TermuX on Android | Part #2 - Over WLAN Hotspot [Ultimate Guide] 24 Replies
2 wks ago -
Forum Thread: Complete Guide to Creating and Hosting a Phishing Page for Beginners 41 Replies
2 wks ago -
Forum Thread: No Wireless Extensions in Linux Debian 3 Replies
3 wks ago
-
How To: Use RedRabbit for Pen-Testing & Post-Exploitation of Windows Machines
-
How To: Boost Your Security with a VPN & Private Email Service
-
How To: Hack Android Using Kali (Remotely)
-
How To: Phish for Social Media & Other Account Passwords with BlackEye
-
How To: Top 10 Things to Do After Installing Kali Linux
-
How to Hack Wi-Fi: Stealing Wi-Fi Passwords with an Evil Twin Attack
-
Android for Hackers: How to Turn an Android Phone into a Hacking Device Without Root
-
How To: Brute-Force Nearly Any Website Login with Hatch
-
Hacking Windows 10: How to Dump NTLM Hashes & Crack Windows Passwords
-
How To: Null Byte's Hacker Guide to Buying an ESP32 Camera Module That's Right for Your Project
-
How To: Get an Internet Connection in the Middle of Nowhere to Hack Remotely
-
How to Hack Wi-Fi: Cracking WPA2 Passwords Using the New PMKID Hashcat Attack
-
How to Hack Wi-Fi: Cracking WPA2-PSK Passwords Using Aircrack-Ng
-
How To: Crack Password-Protected ZIP Files, PDFs & More with Zydra
-
How To: Crack SSH Private Key Passwords with John the Ripper
-
How To: Hack WPA & WPA2 Wi-Fi Passwords with a Pixie-Dust Attack Using Airgeddon
-
How To: Crack Wi-Fi Passwords with Your Android Phone and Get Free Internet!
-
How To: Buy the Best Wireless Network Adapter for Wi-Fi Hacking in 2019
-
How To: Check if Your Wireless Network Adapter Supports Monitor Mode & Packet Injection
-
How To: Crack Shadow Hashes After Getting Root on a Linux System
8 Responses
Please state clearly the syntax that you used. How can anyone help you if you aren't providing enough information?
Generally speaking, to create a bridge with bridge-utils (brctl), type:
brctl addbr <bridge_name>
Then to add an interface to that bridge, type:
brctl addif <bridge_name> <interface>
To see all of your bridges and their interfaces, type:
brctl show
(NB: you will lose any outside connections of the interfaces you bridge, meaning they will not provide you with an IP address and internet connectivity)
TRT
root@kali:~#ifconfig
br0 Link encap:Ethernet HWaddr 9a:18:1e:4e:17:16
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
eth0 Link encap:Ethernet HWaddr c4:54:44:3c:9a:f3
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:875 errors:0 dropped:0 overruns:0 frame:0
TX packets:875 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:95512 (93.2 KiB) TX bytes:95512 (93.2 KiB)
wlan0 Link encap:Ethernet HWaddr 9e:38:85:03:d8:56
inet addr:192.168.1.23 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::9c38:85ff:fe03:d856/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:215589 errors:0 dropped:0 overruns:0 frame:0
TX packets:226779 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:102096009 (97.3 MiB) TX bytes:105115597 (100.2 MiB)
root@kali:~#brctl addif br0 wlan0
can't add wlan0 to bridge br0: Operation not supported
root@kali:~# brctl show
bridge name bridge id STP enabled interfaces
br0 8000.000000000000 no
im i doing something wrong?can you help me?
Is there any way to monitor (monitor mode)with wlan1 and provide Internet access with wlan0?
Yes, that is possible. If that is what you are bridging them for then there is really no need. Just use both interfaces separately for whatever you need.
If you want to browse the internet while cracking a WPS pin with Reaver, go ahead and use one interface with Monitor mode and leave the other one for your internet access. Unless you specifically require bridging, it is not a must.
TRT
yes you can,
ifconfig "wlan0" down
iwconfig "wlan0" mode monitor
ifconfig "wlan0" up
will do i think
byebyte!
Thank you for responding. I thing i have to explain it better. I am using airbase-ng and clone an AP. Then i want to give internet access to the cloned AP.
I see. For that, you will need a third interface with an internet connection. There are currently two modes involved here: monitor (airbase-ng) and master (clone ap).
To access the internet, you need an interface with managed mode (i.e. the normal mode of your interface when it is just connected to a network).
An example of why you would need another interface would be routers. They accept an internet connection from your ISP with one interface (managed mode) and then they use another interface (master mode) to provide you with an access point to connect to.
Sorry, but this is an inconvenience that cannot be escaped.
TRT
the command : brctl addif <bridge_name> <interface>
gives error as : can't add wlan0 to bridge evil: Operation not supported
Share Your Thoughts