0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

VPN接続を CLI から接続/切断する (WSL2 ubuntu, PowerShell)

Last updated at Posted at 2024-09-04

背景

  • パブリッククラウドに接続するためにVPNの接続を切り替える(ON/OFFする)必要がある
  • いちいちマウスぽちぽちしたくないのでCLIからやりたい

やったこと

こんな感じで alias に登録

alias vpnd="rasdial.exe {VPN_CONNECTION_NAME} /disconnect"
alias vpnc="rasdial.exe {VPN_CONNECTION_NAME} ユーザ名 パスワード"

ubuntuなら ~/.bash_aliases あたりに追加しておけばよいかと。

$ vpnc
{VPN_CONNECTION_NAME} に接続中...
ユーザー名とパスワードを確認中...
ネットワークにコンピューターを登録中...
{VPN_CONNECTION_NAME} に正常に接続しました。
コマンドは正常に終了しました。

$ vpnd
コマンドは正常に終了しました。

# VPN接続していない状態でvpnd
$ vpnd
接続なし
コマンドは正常に終了しました。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?