5 | | == Cron Jobs |
| 5 | == Networking |
| 6 | |
| 7 | Here are the contents of the `/etc/network/interfaces` file: |
| 8 | |
| 9 | {{{ |
| 10 | # This file describes the network interfaces available on your system |
| 11 | # and how to activate them. For more information, see interfaces(5). |
| 12 | |
| 13 | # The loopback network interface |
| 14 | auto lo |
| 15 | iface lo inet loopback |
| 16 | |
| 17 | # The primary network interface |
| 18 | auto ens32 |
| 19 | iface ens32 inet static |
| 20 | address 10.156.253.176 |
| 21 | netmask 255.255.255.128 |
| 22 | network 10.156.253.128 |
| 23 | broadcast 10.156.253.255 |
| 24 | gateway 10.156.253.129 |
| 25 | # dns-* options are implemented by the resolvconf package, if installed |
| 26 | dns-nameservers 10.156.249.165 10.156.249.166 10.147.126.165 10.147.126.166 |
| 27 | dns-search xuhl-tr.nhs.uk |
| 28 | }}} |