-
Notifications
You must be signed in to change notification settings - Fork 1
CommonSetup
Akihiro MOTOKI edited this page Dec 8, 2013
·
2 revisions
Edit /etc/network/interfaces
. Here is an example of network node.
# Management network
auto eth0
iface eth0 inet static
address 10.56.45.50
netmask 255.255.255.0
broadcast 10.56.45.255
gateway 10.56.45.254
# Data network (without IP address)
auth eth1
iface eth1 inet manual
up ifconfig $IFACE 0.0.0.0 up
down ifconfig $IFACE down
# External network
auto eth2
iface eth2 inet static
address 192.168.100.50
netmask 255.255.255.0
broadcast 192.168.100.255
gateway 192.168.100.254
sudo aptitude install ntp
If you have your local ntp server, edit /etc/ntp.conf
as follows:
server 10.56.49.117
sudo aptitude install python-software-properties
# Ubuntu Cloud Archive for Havana
sudo add-apt-repository cloud-archive:havana
sudo aptitude update
sudo aptitude upgrade