Kali/OpenVPN/Hotspot: Difference between revisions
From charlesreid1
No edit summary |
(→Setup) |
||
| Line 3: | Line 3: | ||
This approach uses iptables | This approach uses iptables | ||
==Setup== | ==Setup Hotspot== | ||
Set up the hotspot as described at [[Kali/Hotspot]], but skip the iptables commands | Set up the hotspot as described at [[Kali/Hotspot]], but skip the section about connecting to an existing connection (which contains iptables commands). We'll run some different iptables commands to connect the wifi hotspot interface to the OpenVPN interface. | ||
Just to summarize what [[Kali/Hotspot]] covers: | |||
* install necessary software (dhcpcd, dnsmasq, hostapd) | |||
* configure dhcpcd and dnsmasq | |||
* start dhcp and dnsmasq | |||
* configure hostapd | |||
* start hostapd | |||
Set up the OpenVPN connection, which will create an interface like <code>tun0</code> or <code>tun1</code> (we will use <code>tun1</code>) | Set up the OpenVPN connection, which will create an interface like <code>tun0</code> or <code>tun1</code> (we will use <code>tun1</code>) | ||
| Line 25: | Line 33: | ||
echo '1' > /proc/sys/net/ipv4/ip_forward | echo '1' > /proc/sys/net/ipv4/ip_forward | ||
</pre> | </pre> | ||
==Flags== | ==Flags== | ||
Revision as of 03:02, 2 December 2019
This page covers how to connect a wifi hotspot created with hostapd with an OpenVPN connection with Kali Linux
This approach uses iptables
Setup Hotspot
Set up the hotspot as described at Kali/Hotspot, but skip the section about connecting to an existing connection (which contains iptables commands). We'll run some different iptables commands to connect the wifi hotspot interface to the OpenVPN interface.
Just to summarize what Kali/Hotspot covers:
- install necessary software (dhcpcd, dnsmasq, hostapd)
- configure dhcpcd and dnsmasq
- start dhcp and dnsmasq
- configure hostapd
- start hostapd
Set up the OpenVPN connection, which will create an interface like tun0 or tun1 (we will use tun1)
We will modify the iptables rules from Kali/Hotspot to target the tun1 interface instead of the wlan2 interface.
# flush the tables iptables -t nat -F iptables -F # add a postrouting rule to specify a mapping to an outgoing interface iptables -t nat -A POSTROUTING -o tun1 -j MASQUERADE # forward packets from wlan1 to tun1 iptables -A FORWARD -i wlan1 -o tun1 -j ACCEPT # enable ipv4 forwarding echo '1' > /proc/sys/net/ipv4/ip_forward
Flags
| OpenVPN a tool for creating and connecting to virtual private networks.
Creating a Static Key VPN: OpenVPN/Static Key Configuring Your DNS: DNS
|