2016/02/23 EdgeMAX シリーズのファームウェア v1.8.0 がリリースされました。
詳細はこちら をご覧下さい。
「設定例 > Interface > WAN-PPPoE」の版間の差分
ナビゲーションに移動
検索に移動
(ページの作成:「== このページの概要 == * EdgeOS にて、WAN 側を PPPoE にて Internet に接続するための Interface 設定をご紹介します。 *: flets 光等での...」) |
編集の要約なし |
||
24行目: | 24行目: | ||
== コマンドでの設定 == | == コマンドでの設定 == | ||
{{設定例 > コマンド > 流れ | |||
| eth0 に対して設定を行っていきます。プロンプトは省略しています。 | |||
| <pre> | |||
<pre> | |||
set interfaces ethernet eth0 pppoe 0 user-id v4flets-east.jp | set interfaces ethernet eth0 pppoe 0 user-id v4flets-east.jp | ||
set interfaces ethernet eth0 pppoe 0 password guest | set interfaces ethernet eth0 pppoe 0 password guest | ||
42行目: | 36行目: | ||
set interfaces ethernet eth0 description 'WAN' | set interfaces ethernet eth0 description 'WAN' | ||
</pre> | </pre> | ||
}} | |||
== 関連項目 == | == 関連項目 == |
2015年11月16日 (月) 18:17時点における最新版
このページの概要
- EdgeOS にて、WAN 側を PPPoE にて Internet に接続するための Interface 設定をご紹介します。
- flets 光等での回線を利用する際に参考になるかと思います。
- Web UI での設定、コマンドでの設定、それぞれご紹介します。
管理人の環境は、PPPoE を利用する環境ではないため、動作確認はできていません...。Web を調べた結果に基づき記載しています。
設定内容
- WAN に使用するポートは eth0 とします。
- PPPoE のユーザーは、Flets 光のサービス情報サイト (NGN IPv4) 接続用の以下を利用します。
- ID : guest@v4flets-east.jp
- Password : guest
- MTU の値は、参考サイトに基づき、1492 を設定しています。MTU 周りについては、TCP-MSS と合わせて別途まとめたいと思います。
- description (説明) テキストは "WAN" とします。
- 適用する Firewall として、予め WAN_IN、WAN_LOCAL を作成していることとします。
- ※ WAN_IN、WAN_LOCAL の設定内容は、設定例 > Firewall > 基本設定 を参考にして下さい。
Web UI での設定
( 未作成 )
コマンドでの設定
- Configure モードに入ります。
USER01@EDGEOS:~$ configure [edit] USER01@EDGEOS#
- eth0 に対して設定を行っていきます。プロンプトは省略しています。
set interfaces ethernet eth0 pppoe 0 user-id v4flets-east.jp set interfaces ethernet eth0 pppoe 0 password guest set interfaces ethernet eth0 pppoe 0 mtu 1492 set interfaces ethernet eth0 pppoe 0 default-route auto set interfaces ethernet eth0 pppoe 0 name-server auto set interfaces ethernet eth0 pppoe 0 firewall in name WAN_IN set interfaces ethernet eth0 pppoe 0 firewall local name WAN_LOCAL set interfaces ethernet eth0 description 'WAN'
- 設定をコミットします。
USER01@EDGEOS# commit
- 再起動後にも反映されるよう、設定を保存します。
USER01@EDGEOS# save Saving configuration to '/config/config.boot'... Done [edit]
関連項目