Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

18. テレワーク推進部 #13

Open
kitakou0313 opened this issue Aug 28, 2021 · 6 comments
Open

18. テレワーク推進部 #13

kitakou0313 opened this issue Aug 28, 2021 · 6 comments
Assignees

Comments

@kitakou0313
Copy link
Member

概要

あなたは、「テレワークを行う社員の仕事用ルータをセットアップしておいてほしい。」と雑にタスクを割り当てられました。
作業内容は紙に書かれていました。

要約
サーバにVyOSがはいっています。
このサーバを社員の家に置くので、WireGuard VPNのクライアントの設定をいれてください。
簡単な仕事だと思いますが、よろしくお願いいたします。

リンク

https://contest.ictsc.net/#/problems/00775366-3821-4aa2-b344-1c23da8cec67

@ISEglock17
Copy link
Collaborator

たぶん,このサイトを参考にしながら設定を進めていけばよい.
https://gihyo.jp/admin/serial/01/ubuntu-recipe/0614

@ISEglock17
Copy link
Collaborator

サーバー側の/etc/wireguard/の下に,「wg01.conf」というファイル名で以下の内容を保存する.

[Interface]
PrivateKey = 作成したサーバーの秘密鍵
Address = 10.0.0.2/31
ListenPort = 51820

[Peer]
PublicKey = 作成したクライアントの公開鍵
AllowedIPs = 10.0.0.3/31

次にクライアント側の/etc/wireguard/の下に,「wg01.conf」というファイル名で以下の内容を保存する.

[Interface]
PrivateKey = クライアントの秘密鍵
Address = 10.0.0.3/31

[Peer]
PublicKey = EwxEvuDmdaKslWndieq1BFsNQgWjtyWKPe+kCDSc+nQ=
EndPoint = 192.168.1.2:51820
AllowedIPs = 10.0.0.2/31

@ISEglock17
Copy link
Collaborator

ISEglock17 commented Aug 28, 2021

次に,サーバー側で以下のコマンドを実行して,wg01の有効化と実行を行います.
$ sudo systemctl enable wg-quick@wg01
$ sudo systemctl start wg-quick@wg01

@ISEglock17
Copy link
Collaborator

クライアント側では,次のようなコマンドを実行しましょう.
$ sudo wg-quick up wg01

@Cyndaquil1999
Copy link
Collaborator

やること

サーバの秘密鍵生成
接続先の設定

こんな感じでしょうか?

@Cyndaquil1999 Cyndaquil1999 self-assigned this Aug 29, 2021
@Cyndaquil1999
Copy link
Collaborator

user@wgclient:~$ show interfaces
Codes: S - State, L - Link, u - Up, D - Down, A - Admin Down
Interface        IP Address                        S/L  Description
---------        ----------                        ---  -----------
eth0             192.168.1.1/24                    u/u  Client
lo               127.0.0.1/8                       u/u
                 ::1/128
wg01             10.0.0.3/31                       u/u

Q18におけるVyOSのインターフェースは上のようになっているのですが、eth1を追加してサーバ側のIPアドレスを設定したいものの、eth1をコマンドから追加する方法ってないですかね?(検索してもGUIからの操作しか見つからなかった)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants