Hallo!
Ich habe diese Anleitung benutzt um einen AP zu konfigurieren:
http://blog.schdefoon.de/?p=726
Der RPi ist über LAN an den Router angeschlossen und ich möchte per Wlan auf den Pi zugreifen und ins internet. Dabei soll dann der ganze Inet Traffic über einen VPN laufen.
Leider habe ich es scheinbar so verbaselt, dass ich über putty keinen Zugriff mehr habe sobald ich folgendes eingebe:
in dem Moment bricht dann die Verbindung ab.
Meine Hardware:
TL-WN722N
Mein Router ist auf 192.168.178.1 und soll als DNS dienen.
meine files schauen so aus:
root@osmc:/mnt/usbhdd# cat /etc/dhcp/dhcpd.conf
ddns-update-style none;
default-lease-time 86400;
max-lease-time 86400;
subnet 192.168.10.0 netmask 255.255.255.0 {
range 192.168.10.2 192.168.10.9 ;
option domain-name-servers 8.8.8.8, 8.8.4.4 ;
option domain-name "home";
option routers 192.168.10.1 ;
}
root@osmc:~# cat /etc/network/interfaces
# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or
# /usr/share/doc/ifupdown/examples for more information.
auto lo
iface lo inet loopback
iface eth0 inet dhcp
# The wireless interface
auto wlan0
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.178.1
netmask 255.255.255.0
up iptables-restore < /etc/iptables.ipv4.nat
Alles anzeigen
root@osmc:~# cat /etc/hostapd/hostapd.conf
interface=wlan0
ssid=ANONspot
channel=1
# WPA and WPA2 configuration
macaddr_acl=0
auth_algs=1
ignore_broadcast_ssid=0
wpa=2
wpa_passphrase=xxxxx
wpa_key_mgmt=WPA-PSK
wpa_pairwise=TKIP
rsn_pairwise=CCMP
# Hardware configuration
driver=ath9k_htc [color=#FF0000]< stimmt die bezeichnung?[/color]
hw_mode=g
Alles anzeigen
driver=ath9k_htc < stimmt die bezeichnung?
root@osmc:~# lsmod
Module Size Used by
ext3 205344 1
jbd 87457 1 ext3
bnep 11766 2
bluetooth 375790 5 bnep
nfsd 316812 2
xt_conntrack 7529 1
xt_connmark 2043 2
iptable_mangle 1696 1
ipt_MASQUERADE 1212 1
nf_nat_masquerade_ipv4 2884 1 ipt_MASQUERADE
iptable_nat 2176 1
nf_conntrack_ipv4 14435 4
nf_defrag_ipv4 1739 1 nf_conntrack_ipv4
nf_nat_ipv4 7390 1 iptable_nat
nf_nat 17512 2 nf_nat_ipv4,nf_nat_masquerade_ipv4
nf_conntrack 103030 6 nf_nat,nf_nat_ipv4,xt_conntrack,nf_nat_masquerade_ipv4,xt_connmark,nf_conntrack_ipv4
ip6table_filter 1647 0
ip6_tables 13402 1 ip6table_filter
arc4 1921 2
iptable_filter 1706 1
ip_tables 13154 3 iptable_filter,iptable_mangle,iptable_nat
x_tables 21353 8 ip6table_filter,ip_tables,ipt_MASQUERADE,xt_conntrack,iptable_filter,xt_connmark,iptable_mangle,ip6_tables
ath9k_htc 69808 0
ath9k_common 17927 1 ath9k_htc
ath9k_hw 483671 2 ath9k_common,ath9k_htc
ath 23127 3 ath9k_common,ath9k_htc,ath9k_hw
mac80211 613132 1 ath9k_htc
sg 23367 0
cfg80211 498162 4 ath,ath9k_common,mac80211,ath9k_htc
uas 16963 0
rfkill 25348 4 cfg80211,bluetooth
uio_pdrv_genirq 3642 0
uio 9968 1 uio_pdrv_genirq
fuse 105798 1
ipv6 409945 48
Alles anzeigen
Ich hoffe ihr könnt mir weiterhelfen!
Ich weiß, dass das viel Zeit kostet sich mein Problem anzuschauen deshalb gibts auch eine kleine "Wiedergutmachung" wenn ihr mir helfen könnt.