| 7 | | - MySQL (Version 5.5.47) |
| | 7 | == Networking |
| | 8 | |
| | 9 | {{{ |
| | 10 | |
| | 11 | # This file describes the network interfaces available on your system |
| | 12 | # and how to activate them. For more information, see interfaces(5). |
| | 13 | |
| | 14 | source /etc/network/interfaces.d/* |
| | 15 | |
| | 16 | # The loopback network interface |
| | 17 | auto lo |
| | 18 | iface lo inet loopback |
| | 19 | |
| | 20 | # The primary network interface |
| | 21 | auto enp0s17 |
| | 22 | iface enp0s17 inet static |
| | 23 | address 10.156.254.206 |
| | 24 | netmask 255.255.255.128 |
| | 25 | network 10.156.254.128 |
| | 26 | broadcast 10.156.254.255 |
| | 27 | gateway 10.156.254.129 |
| | 28 | # dns-* options are implemented by the resolvconf package, if installed |
| | 29 | dns-nameservers 10.156.249.165 10.156.249.166 |
| | 30 | dns-search xuhl-tr.nhs.uk |
| | 31 | |
| | 32 | }}} |