web-dev-qa-db-ja.com

Ubuntu 16.04をNetgear AC1200ルーター(モデルr6220)に接続する方法

Ubuntu 16.04をNetgear AC1200ルーター(モデルr6220)に接続するにはどうすればよいですか?

1
Monty

ぐるぐる回って数時間試してみたところ、これらの手順がうまくいきました。 VPNサーバーを実行しているルーターと同じWi-Fiホットスポットに接続すると機能しないため、ホットスポットとして電話に接続する必要がありました。これが誰かを助けることを願っています。

# install these packages in ubuntu terminal
Sudo apt-get install openvpn
Sudo apt-get install network-manager-openvpn
Sudo apt-get install network-manager-openvpn-gnome

# download the client files from the router as 
# a Zip file and extract them to my Downloads directory

# open network > edit connections > add > 
# import a saved vpn configuration > select the client.conf file
# that was extracted in the Downloads directory

# edit the vpn connection and set the gateway port to :12973 
# (same as is configured in the router's vpn settings)

# change type to TLS
# select client.crt that was extracted in the Downloads dir
for user certificate
# select ca.crt that was extracted in the Downloads dir for ca certificate
# select client.key that was extracted in the Downloads dir for private key

# click Advanced
# change custom gateway port to 12973
# change virtual device type to TUN
# check the checkbox to accept authenticated packets from any address
1
Monty