トップ 差分 一覧 ソース 検索 ヘルプ RSS ログイン

UbuntuでOpenVPN(クライアント)ってみました

$ sudo aptitude install openvpn
$ sudo cp -p /usr/share/doc/openvpn/examples/sample-config-files/client.conf /etc/openvpn/
$ sudo /etc/init.d/openvpn restart
$ ifconfig  # tup / tun があればOK

社内環境だと↓みたいに編集

sudo vim /etc/openvpn/client.conf

# Are we connecting to a TCP
proto tcp 
;proto udp

# The hostname/IP and port of the server.
remote example.com 1234 
;remote my-server-2 1194

no14 » ubuntu に OpenVPNのクライアントを入れる。

[Ubuntu]