~0x44/nova/bug838466

« back to all changes in this revision

Viewing changes to nova/compute/interfaces.template

  • Committer: Todd Willey
  • Date: 2010-07-15 04:21:17 UTC
  • mfrom: (131.1.4)
  • Revision ID: git-v1:fb2ea2cafd67fc1ef67edc969a1edf3a1d2fd7f7
fix merge errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# This file describes the network interfaces available on your system
 
2
# and how to activate them. For more information, see interfaces(5).
 
3
 
 
4
# The loopback network interface
 
5
auto lo
 
6
iface lo inet loopback
 
7
 
 
8
# The primary network interface
 
9
auto eth0
 
10
iface eth0 inet static
 
11
        address %(address)s
 
12
        netmask %(netmask)s
 
13
        network %(network)s
 
14
        broadcast %(broadcast)s
 
15
        gateway %(gateway)s
 
16
        dns-nameservers %(dns)s
 
17
 
 
18