source: trunk/puppet/modules/puppet-network/README @ 704

Last change on this file since 704 was 566, checked in by josx@…, 14 years ago

es una prueba

File size: 632 bytes
Line 
1This module aims to provide a general abstracted interface to
2configure various network-related parameters on multiple platforms.
3
4OpenBSD and Debian are the current target architectures, but patches
5are welcome for others.
6
7IP, netmask, broadcast, VLANs are currently supported. route and
8firewall configuration are next in line.
9
10Example of use
11==============
12
13    network::interface { "eth0" :
14        address    => "10.11.9.8",
15        broadcast  => "10.11.9.255",
16        netmask    => "255.255.255.0",
17        parameters => "gateway 10.11.9.1\n        dns-search mydomain.mine.nu\n        dns-nameservers 10.11.9.1",
18    }
19 
20
Note: See TracBrowser for help on using the repository browser.