2012-01-26
■[Linux]Xubuntsuのネットワーク接続
ThinkPad X22にXubuntsuをインストール。
pppoe接続でネットワーク接続できたので、その方法をメモ。
<方法>
(1)rp-pppoe-3.10.tar.gzを解凍(rootで実行)
# tar xfvz rp-pppoe-3.10.tar.gz
(2)rp-pppoe-3.10をインストール
# ./configure
# make
# make install
(3)pppoeの設定
# pppoe-setup
>> Enter your PPPoE user name: *******@*****.or.jp
プロバイダから指定されたユーザIDを設定(ドメインまで入れる)
>> Enter the Ethernet interface connected to the DSL modem For Solaris,
this is likely to be something like /dev/hme0. For Linux it will be ethn,
where 'n' is a number. : eth0
eth0を設定(デフォルト)
>> Enter the demand value (default no) : no
noを設定(デフォルト)
>> Enter the DNS information here : server
serverを設定(デフォルト)
>> Please enter your PPPoE password :
プロバイダから指定されたパスワードを設定、表示はされない
>> Please re-enter your PPPoE password :
もう一度パスワードを設定
>> The firewall choices are:
0 - NONE
1 - STANDALONE
2 - MASQUERADE
>> Choose a type of firewall (0-2): 0
ここでは0で設定(ファイヤーウォールなし)
>> Accept these settings and adjust configuration files (y/n)? y
設定項目を確認してOKなら'y'を入力
Configulations, it should be all set up!
(4)pppoe接続の開始
# pppoe-start
...Connected!
こうなれば接続完了
注意事項としては、ユーザID入力時にドメイン(@***.**.jp)まで入れないと接続できないこと。
これに2日くらいハマった。