secure_ubuntu_system:first_configuration
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
secure_ubuntu_system:first_configuration [2016/12/07 12:14] – [Enable packet forwarding by the kernel] peter | secure_ubuntu_system:first_configuration [2016/12/07 12:17] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Secure Ubuntu System - First Configuration ====== | ||
- | |||
- | ===== Login ===== | ||
- | |||
- | Login to the newly installed system with your previously created Administrator' | ||
- | |||
- | |||
- | ===== Get root privileges (Optional) ===== | ||
- | |||
- | Because we must run all the next steps from this document with root privileges, we can either prepend all commands in this tutorial with the string **sudo**, or we become root right now by typing: | ||
- | |||
- | <code bash> | ||
- | sudo -i | ||
- | </ | ||
- | |||
- | ...and entering the Administrator' | ||
- | |||
- | **IMPORTANT**: | ||
- | |||
- | <WRAP danger> | ||
- | **DANGER**: | ||
- | |||
- | <code bash> | ||
- | sudo su | ||
- | </ | ||
- | |||
- | and do __NOT__ enable the root login by running: | ||
- | |||
- | <code bash> | ||
- | sudo passwd root | ||
- | </ | ||
- | |||
- | and giving root a password. | ||
- | |||
- | With these options one can log in as the root user, but this is frowned upon by the Ubuntu developers and community for various reasons. | ||
- | |||
- | If for some reason the root account has been enabled then disable it again, issuing the following command: | ||
- | |||
- | <code bash> | ||
- | sudo passwd -dl root | ||
- | </ | ||
- | </ | ||
- | |||
- | |||
- | ===== Backup the network interface file ===== | ||
- | |||
- | <code bash> | ||
- | cp / | ||
- | </ | ||
- | |||
- | This is done for safety. | ||
- | |||
- | |||
- | ===== Configure the network ===== | ||
- | |||
- | Because the Ubuntu installer has configured the system to get its network settings via DHCP, we have to change that now because a server should have a static IP address. | ||
- | |||
- | Change the following entry **iface eth0 inet dhcp** in the network interfaces file. | ||
- | |||
- | Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo vi / | ||
- | </ | ||
- | |||
- | and edit the file as follows: | ||
- | |||
- | <file bash / | ||
- | # This file describes the network interfaces available on your system | ||
- | # and how to activate them. For more information, | ||
- | |||
- | # The loopback network interface | ||
- | auto lo | ||
- | iface lo inet loopback | ||
- | |||
- | # The primary WAN interface | ||
- | auto eth0 | ||
- | iface eth0 inet static | ||
- | address 192.168.1.2 | ||
- | netmask 255.255.255.0 | ||
- | network 192.168.1.0 | ||
- | broadcast 192.168.1.255 | ||
- | gateway 192.168.1.1 | ||
- | # dns-* options are implemented by the resolvconf package, if installed | ||
- | dns-search | ||
- | dns-nameservers 192.168.1.201 192.168.1.202 8.8.8.8 8.8.4.4 | ||
- | |||
- | |||
- | # The primary LAN interface | ||
- | auto eth1 | ||
- | iface eth1 inet static | ||
- | address 192.168.0.2 | ||
- | netmask 255.255.255.0 | ||
- | network 192.168.0.0 | ||
- | broadcast 192.168.0.255 | ||
- | </ | ||
- | |||
- | <WRAP tip> | ||
- | ==== IPv6 ==== | ||
- | |||
- | If using IPv6 then something like the following is needed: | ||
- | |||
- | <file bash / | ||
- | ### Start IPV6 static configuration | ||
- | auto eth0 | ||
- | iface eth0 inet6 static | ||
- | # | ||
- | | ||
- | | ||
- | | ||
- | | ||
- | ### END IPV6 configuration | ||
- | </ | ||
- | </ | ||
- | |||
- | The **dns-search** option should usually be the same domain as returned by **hostname -f**. | ||
- | |||
- | <WRAP warning> | ||
- | **WARNING**: | ||
- | |||
- | Traditionally, | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | You may need to manually remove the DHCP record (lease) associated to this Ubuntu server from your DHCP server so the correct IP can be found by other machines on the network. | ||
- | |||
- | You might also need to manually add a **HOST(A)** record to your DNS server (for <color red> | ||
- | |||
- | By the way, <color red> | ||
- | |||
- | Lines beginning with the word **auto** are used to identify the physical interfaces to be brought up when **ifup** is run with the **-a** option. | ||
- | </ | ||
- | ===== Enable packet forwarding by the kernel ===== | ||
- | |||
- | Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo sh -c "echo 1 > / | ||
- | </ | ||
- | |||
- | and then: | ||
- | |||
- | <code bash> | ||
- | sudo vi / | ||
- | </ | ||
- | |||
- | ...and uncomment the line: | ||
- | |||
- | < | ||
- | net.ipv4.ip_forward=1 | ||
- | </ | ||
- | |||
- | To uncomment the line, simply remove the hash mark # from the front of the line. | ||
- | |||
- | IP forwarding essentially turns your server into a router, and can be used as the server has multiple Network Interfaces (NICs). | ||
- | |||
- | If using IPv6, then also uncomment the line: | ||
- | |||
- | < | ||
- | net.ipv6.conf.all.forwarding=1 | ||
- | </ | ||
- | |||
- | <WRAP safety> | ||
- | **SAFETY**: | ||
- | </ | ||
- | |||
- | ===== Refresh sysctl ===== | ||
- | |||
- | Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo sysctl -p | ||
- | </ | ||
- | |||
- | **sysctl** is used to modify kernel parameters at runtime. | ||
- | |||
- | |||
- | ===== Restart the Network ===== | ||
- | |||
- | To enable the new settings to be recognized, the network needs to be restarted. | ||
- | |||
- | |||
- | <code bash> | ||
- | sudo / | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | If this fails to restart the network then try using this command instead: | ||
- | |||
- | <code bash> | ||
- | sudo systemctl restart network.service | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | sudo service networking restart | ||
- | </ | ||
- | |||
- | An error message such as this might be displayed, but can be ignored: | ||
- | |||
- | < | ||
- | ERROR: Calling a sysvinit script on a system using upstart isn't supported. | ||
- | </ | ||
- | |||
- | An alternative method to restart the network is using these commands: | ||
- | |||
- | <code bash> | ||
- | sudo ifdown -a | ||
- | </ | ||
- | |||
- | then | ||
- | |||
- | <code bash> | ||
- | sudo ifup -a | ||
- | </ | ||
- | </ | ||
- | |||
- | ===== Check the network interfaces ===== | ||
- | |||
- | Issue the following commands: | ||
- | |||
- | <code bash> | ||
- | ifconfig eth0 | ||
- | ip address show eth0 | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | ==== IPv6 ==== | ||
- | |||
- | If using IPv6 issue this command: | ||
- | |||
- | <code bash> | ||
- | ip -6 address show eth0 | ||
- | </ | ||
- | |||
- | </ | ||
- | |||
- | |||
- | Alternatively, | ||
- | |||
- | <code bash> | ||
- | sudo mii-tool | ||
- | </ | ||
- | |||
- | ...which should show something like: | ||
- | |||
- | < | ||
- | eth0: no autonegotiation, | ||
- | eth1: no autonegotiation, | ||
- | </ | ||
- | |||
- | Ensure that all interfaces are shown. | ||
- | |||
- | In the example output above, we can see that both eth0 and eth1 have been picked up, so all well. | ||
- | |||
- | |||
- | ===== Setup the Network Hosts File ===== | ||
- | |||
- | Edit the /etc/hosts file. Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo vi /etc/hosts | ||
- | </ | ||
- | |||
- | and edit the file as follows: | ||
- | |||
- | <file bash / | ||
- | 127.0.0.1 localhost.localdomain localhost | ||
- | 192.168.0.2 server1.sharewiz.local | ||
- | 192.168.1.2 server1.sharewiz.net server1 | ||
- | # The following lines are desirable for IPv6 capable hosts | ||
- | ::1 localhost ip6-localhost ip6-loopback | ||
- | fe00::0 ip6-localnet | ||
- | ff00::0 ip6-mcastprefix | ||
- | ff02::1 ip6-allnodes | ||
- | ff02::2 ip6-allrouters | ||
- | ff02::3 ip6-allhosts | ||
- | </ | ||
- | |||
- | Check the network config is working. | ||
- | |||
- | <code bash> | ||
- | sudo ifconfig | ||
- | </ | ||
- | |||
- | and make sure the settings are correct. | ||
- | |||
- | **eth1** should also show the IP Address <color red> | ||
- | |||
- | One of the lines for each NIC should show **UP BROADCAST RUNNING MULTICAST**. | ||
- | |||
- | |||
- | ===== Check the network is working ===== | ||
- | |||
- | Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo ping www.google.com | ||
- | </ | ||
- | |||
- | and make sure this is working. | ||
- | |||
- | < | ||
- | 64 bytes from … | ||
- | </ | ||
- | |||
- | |||
- | Press <color green> | ||
- | |||
- | <WRAP info> | ||
- | ==== IPv6 ==== | ||
- | |||
- | To ping using IPv6 to an IPv6 enabled site such as ipv6.google.com: | ||
- | |||
- | <code bash> | ||
- | ping6 ipv6.google.com | ||
- | </ | ||
- | |||
- | displays... | ||
- | |||
- | < | ||
- | PING cyberciti.biz(ipv6.google.com) 56 data bytes | ||
- | 64 bytes from ipv6.google.com: | ||
- | 64 bytes from ipv6.google.com: | ||
- | 64 bytes from ipv6.google.com: | ||
- | 64 bytes from ipv6.google.com: | ||
- | 64 bytes from ipv6.google.com: | ||
- | 64 bytes from ipv6.google.com: | ||
- | 64 bytes from ipv6.google.com: | ||
- | </ | ||
- | |||
- | |||
- | You can also run a traceroute to check the network is working: | ||
- | |||
- | <code bash> | ||
- | traceroute6 ipv6.google.com | ||
- | </ | ||
- | </ | ||
- | ===== Set the hostname ===== | ||
- | |||
- | Issue the following command: | ||
- | |||
- | <code bash> | ||
- | sudo sh -c "echo server1.sharewiz.net > / | ||
- | </ | ||
- | |||
- | |||
- | ===== Restart the System ===== | ||
- | |||
- | To enable the new hostname settings to be recognized, restart the system. | ||
- | |||
- | <code bash> | ||
- | sudo reboot | ||
- | </ | ||
- | |||
- | Once the system is rebooted simply login again and issue the **sudo -i** command to continue implementing the system. | ||
- | |||
- | |||
- | ===== Check the Network Settings ===== | ||
- | |||
- | To enable the new network settings to be recognized, restart the system. | ||
- | |||
- | <code bash> | ||
- | sudo hostname | ||
- | </ | ||
- | |||
- | and | ||
- | |||
- | <code bash> | ||
- | sudo hostname -f | ||
- | </ | ||
- | |||
- | |||
- | Both should show <color red> | ||
- | |||
- | |||
- | ===== Use an SSH Client from now on ===== | ||
- | |||
- | It is better using a SSH Client to connect to the system than directly logging into the console. | ||
- | |||
- | SSH Clients are not only usually quicker, but they also allows for scrolling and copying of text. They often also allow commands to be pasted in, which could be copied from these directions. | ||
- | |||
- | Examples of SSH Clients include Putty. | ||
- | |||
- | |||
- | ===== Login using a SSH Client ===== | ||
- | |||
- | <code bash> | ||
- | ssh adminstrator@192.168.1.2 | ||
- | </ | ||
- | |||
- | The terminal will show something like: | ||
- | |||
- | < | ||
- | The authenticity of host ' | ||
- | ECDSA key fingerprint is 79: | ||
- | Are you sure you want to continue connecting (yes/no)? | ||
- | </ | ||
- | |||
- | Go ahead and type **yes**, and then enter the password of the administrator, | ||
- | |||
- | |||
secure_ubuntu_system/first_configuration.1481112844.txt.gz · Last modified: 2020/07/15 09:30 (external edit)