このページの2つのバージョン間の差分を表示します。
両方とも前のリビジョン前のリビジョン次のリビジョン | 前のリビジョン | ||
05_network:04_vyatta:vyatta_install [2012/12/12 09:14] – matsui | 05_network:04_vyatta:vyatta_install [2012/12/14 05:44] (現在) – matsui | ||
---|---|---|---|
行 1: | 行 1: | ||
+ | ====== Vyatta - インストール ====== | ||
+ | [[https:// | ||
+ | |||
+ | |||
+ | ログインします。(Username: | ||
+ | |||
+ | ハードディスクに Vyatta をインストールします。 | ||
+ | $ install image | ||
+ | |||
+ | インストーラの質問に答えます。 | ||
+ | < | ||
+ | Would you like to continue?: (既定値) | ||
+ | Partition: (既定値) | ||
+ | Install the image on?: (既定値) | ||
+ | Continue?: Yes | ||
+ | How big of a root partition should I create?: (既定値) | ||
+ | Which one should I copy to sda?: (既定値) | ||
+ | Enter vyatta password: (vyatta アカウントのパスワードを設定) | ||
+ | Which drive should GRUB modify the boot partition on?: (既定値) | ||
+ | </ | ||
+ | |||
+ | 仮想マシンを停止します。 | ||
+ | $ sudo shutdown -h now | ||
+ | |||
+ | ====== ログイン ====== | ||
+ | <code console> | ||
+ | Welcom to Vyatta - vyatta tty1 | ||
+ | |||
+ | vyatta login: vyata | ||
+ | Password: | ||
+ | </ | ||
+ | |||
+ | ====== インターフェース設定 ====== | ||
+ | <code console> | ||
+ | # set interfaces ethernet eth0 address 10.10.100.1/ | ||
+ | # set interfaces ethernet eth1 address 192.168.100.246/ | ||
+ | </ | ||
+ | |||
+ | ====== システム設定 ====== | ||
+ | <code console> | ||
+ | # set system gateway-address 10.10.100.5 | ||
+ | # set system name-server 8.8.8.8 | ||
+ | # set system host-name vyatta02.hoge.hoge | ||
+ | # set system time-zone America/ | ||
+ | # set system ntp-server ntp.jst.mfeed.ad.jp | ||
+ | </ | ||
+ | |||
+ | ====== サービス設定 ====== | ||
+ | # set service ssh | ||
+ | |||
+ | ====== 設定反映 ====== | ||
+ | commitで設定を反映する。 | ||
+ | # commit | ||
+ | saveで、/ | ||
+ | # save |