Difference between revisions of "Infrastructure:Sysadmin Handbook"

From the Linux and Unix Users Group at Virginia Teck Wiki
Jump to: navigation, search
imported>Pew
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
This page describes how to build the infrastructure from scratch, as well manage it in general.
+
This page describes how to manage the infra. See [https://vtluug.github.io/rtfm.txt rtfm.txt] for a guide to build it from scratch.
  
 +
This covers setup of a VM on [[Infrastructure:Meltdown|meltdown]] or [[Infrastructure:Spectre|spectre]] depending on if the service is critical or not.
  
== Networking ==
+
== Networks ==
* Set up physical boxes based on the [[Infrastructure:Diagram|Diagram]]
+
''Further information: [[Infrastructure:Network|Network]]
* Determine the ip addresses based on [[Infrastructure:Network|Network]]
 
=== Router ===
 
Configure /etc/network/interfaces:
 
  
<nowiki>
+
We ''should'' have the following networks in place:
# v6
 
iface $EXTERNAL_IF inet6 auto
 
iface $INTERNAL_IF inet6 static
 
    address $INTERNAL_IPv6
 
    netmask 128
 
    # Enable internal network to access router's external v6 address
 
    pre-up ip route add $EXTERNAL_IPv6 via $INTERNAL_IPv6
 
    # Enable NDP Proxying so internal boxes get SLAAC
 
    pre-up echo 1 > /proc/sys/net/ipv6/conf/all/forwarding
 
    pre-up echo 2 > /proc/sys/net/ipv6/conf/all/accept_ra
 
  
# VTLUUG Private Network v4
+
* [[Infrastructure:Meltdown|meltdown]] and [[Infrastructure:Spectre|spectre]] br0 on eno1 <--> enp4s0 on [[Infrastructure:Joey|joey]]. This is the main LUUG network.
iface $INTERNAL_IF inet static
+
** 10.98.0.0/16 for VTLUUG NAT
    address $INTERNAL_IPv4
+
** IPv6 via prefix delegation on 607:b400:6:cc80/64
    netmask 255.255.255.0
+
** Global IPv4s via ARP proxying (See https://github.com/vtluug/scripts). Gateway is 128.173.88.1/22.
 +
* Static hosts are on 10.98.0.0/24, and DHCP is enabled on 10.98.1.0/24. This is mainly just useful for organization and quickly finding new hosts or other hosts on the network.
 +
** Static host IPs are assigned via static DHCP leases for IPv4.
 +
** Since we can't do this with IPv6, physical host IPs are determined upon first boot and VMs are assigned a specific MAC to pre-determine the SLAAC IP.
 +
* "Internet" (a CNS portal) <--> enp2s0 on [[Infrastructure:Joey|joey]]. LUUG only has one of these, and port security is probably enabled.
  
# Additional IPs
+
'''DNS/DHCP:'''
iface $EXTERNAL_IF inet static
+
* All DNS entries for services run by VTLUUG are hosted on [https://gandi.net Gandi]. Ask an officer if you want to change something.
    address $EXTERNAL_IPv4
+
* jkh and Roddy own ece.vt.edu. DNS updates don't happen. echarlie can add IPv6-only records if needed to wuvt.vt.edu so we have PTRs.
    gateway 128.173.88.1
+
* [[Infrastructure:Joey|joey]] runs DHCP via dnsmasq on enp4s0 (that is, 10.98.0.0/16). To change anything, modify it on https://github.com/vtluug/scripts first then pull that into root's homedir on [[Infrastructure:Joey|joey]]. Please don't just update it on a machine without pushing your updates.
    broadcast 128.173.91.255
+
* By default, hosts are accessible via SSH on ports 22 and 2222.
    netmask 255.255.252.0
 
    # Nat Settings
 
    # TODO this probably doesn't work
 
    pre-up tc action nat egress 10.99.0.0/24 $EXTERNAL_IP
 
    # Enable ARP Proxying so internal v4 address are accessible
 
    pre-up echo 1 > /proc/sys/net/ipv4/conf/all/proxy_arp
 
    pre-up echo 1 > /proc/sys/net/ipv4/ip_forward
 
    # Route internal v4 addresses
 
    ip route add $JOEY_EXTERNAL_IPv4/24 dev $INTERNAL_IF
 
    ip route add $CRASHANDBURN_EXTERNAL_IPv4/24 dev $INTERNAL_IF
 
    ip route add $SCZI_EXTERNAL_IPv4/24 dev $INTERNAL_IF
 
    ip route add $ACIDBURN_EXTERNAL_IPv4/24 dev $INTERNAL_IF
 
    ip route add $ZEROCOOL_EXTERNAL_IPv4/24 dev $INTERNAL_IF
 
    ip route add $MIRROR_EXTERNAL_IPv4/24 dev $INTERNAL_IF
 
</nowiki>
 
  
Next, set up NDP proxying
+
== Adding a VTLUUG Service VM ==
Configure /etc/ndppd.conf: (May not already exist)
+
''VMs in this category are deployed to [[Infrastructure:Meltdown|meltdown]]''
  
 +
Prerequisites:
 +
* Clone <code>https://github.com/vtluug/scripts</code>. This is referred to as 'SCRIPTS' in this guide.
 +
* Clone <code>https://github.com/vtluug/ansible</code> and install ansible. This repo is referred to as 'ANSIBLE' in this guide.
 +
* Have access to the vtluug-admin repo on gitolite.
 +
* Understand the [[Infrastructure:Network|Network]] and [[Infrastructure]].
 +
* Put your SSH key on [[Infrastructure:Meltdown|meltdown]]
  
<nowiki>
+
=== Configure the network ===
# Rather than only listenting on each individual IPv6 address, we
+
* Decide on a MAC address for the host and add it to <code>SCRIPTS/router/lan/local_hosts</code>
#  simply forward all soliciations. The main advantage is that we
+
* Add an entry to <code>SCRIPTS/router/lan/dnsmasq.conf</code> for static DHCP leases.
#  don't have to add any additional routing rules if a new internal
+
* If a new IP in 128.173.88.1/22 is being added, also add it to <code>SCRIPTS/router/proxy/arp_proxy.sh</code>
#  device is added.
 
route-ttl 30000
 
address-ttl 30000
 
  
# External interface to listen on
+
'''Note:''' It is '''not''' recommended that you do the following steps if nobody is on campus in case something breaks.
proxy $EXTERNAL_IF {
 
    router yes
 
    timeout 500 
 
    autowire no
 
    keepalive yes
 
    retries 3
 
    promiscuous no
 
    ttl 30000
 
  
    # Prefix to listen on
+
Pull the latest changes to <code>/root/scripts</code>, update the configuration files, and restart the services:
    rule ::0/ { # TODO might change prefix
+
* Dnsmasq configuration is at <code>/etc/dnsmasq.conf</code>
        # Internal interface to forward everything to
+
* ARP Proxy configuration is in <code>/usr/local/bin</code>
        iface $INTERNAL_IF
 
        autovia no
 
    }
 
}
 
</nowiki>
 
  
Now start '''and''' enable ndppd.service.
+
=== Add the VM configuration to ansible ===
 +
Edit <code>ANSIBLE_PATH/roles/deploy-vms/defaults/main.yml</code> and add a new entry, following the existing format.
  
=== Everything Else not run under oVirt ===
+
'''Note:''' if there are any entries in this file that are '''not''' present on the VM host, they will also be created. Comment out entries that shouldn't be created. Existing hosts are skipped.
==== Debian ====
 
Configure /etc/network/interfaces:
 
  
<nowiki>
+
Run <code>ansible-playbook -v deploy.yml -i hosts.cfg -u papatux -k -K -e @VTLUUG_ADMIN_REPO/accounts.yml</code>, using the correct vtluug-admin repo path.
# v6
 
iface $INTERFACE inet6 auto
 
auto $INTERFACE
 
iface $INTERFACE inet static
 
    address $INTERNAL_IPv4
 
    gateway 10.99.0.1
 
    netmask 255.255.255.0
 
  
# Additional IPs - Only do this if this box has an external IP
+
=== Testing ===
iface $INTERFACE inet static
+
The new host should be accessible by papatux on via SSH port 2222 (and 22) over IPv6 and IPv4 from the internal network. Check 10.98.1.0/24 to see if it had any issues getting a static DHCP lease and if the MAC is correct.
    address $EXTERNAL_IPv4
 
    gateway 128.173.88.1
 
    netmask 255.255.252.0
 
</nowiki>
 
  
==== Centos ====
+
== Adding a User VM ==
Configure /etc/sysconfig/network-scripts/ifcfg-$INTERFACE:
+
''VMs in this category are deployed to [[Infrastructure:Spectre|spectre]]''
  
<nowiki>
+
Prerequisites:
ONBOOT="yes"
+
* Clone <code>https://github.com/vtluug/scripts</code>. This is referred to as 'SCRIPTS' in this guide.
NM_CONTROLLED="no"
+
* Clone <code>https://github.com/vtluug/ansible</code> and install ansible. This repo is referred to as 'ANSIBLE' in this guide.
BOOTPROTO="static"
+
* Understand the [[Infrastructure:Network|Network]] and [[Infrastructure]].
IPADDR0="$INTERNAL_IPv4"
+
* Have root on [[Infrastructure:Spectre|spectre]]
GATEWAY0="10.99.0.1"
+
* Put your SSH key on [[Infrastructure:Spectre|spectre]]
NETMASK0="255.255.255.0"
 
# Addition IPs - Only do this if this box has an external IP
 
IPADDR1="$EXTERNAL_IPv4"
 
GATEWAY1="128.173.88.1"
 
NETMASK1="255.255.252.0"
 
</nowiki>
 
  
== Other stuff ==
+
=== Configure the network ===
 +
* Decide on a MAC address for the host and add it to <code>SCRIPTS/router/lan/local_hosts</code>
 +
* Add an entry to <code>SCRIPTS/router/lan/dnsmasq.conf</code> for static DHCP leases. (If applicable; you might not care for a test/temp VM).
 +
 
 +
'''Note:''' It is '''not''' recommended that you do the following steps if nobody is on campus in case something breaks.
 +
 
 +
Pull the latest changes to <code>/root/scripts</code>, update the configuration files, and restart the services:
 +
* Dnsmasq configuration is at <code>/etc/dnsmasq.conf</code>
 +
 
 +
=== Add the VM configuration to ansible ===
 +
Edit <code>ANSIBLE_PATH/roles/deploy-vms/defaults/main.yml</code> and add a new entry under <code>new_vms_spectre</code>, following the existing format.
 +
 
 +
'''Note:''' if there are any entries in this file that are '''not''' present on the VM host, they will also be created. Comment out entries that shouldn't be created. Existing hosts are skipped.
 +
 
 +
Run <code>ansible-playbook -v deploy.yml -i hosts.cfg -u papatux -k -K</code>, using the correct vtluug-admin repo path.
 +
 
 +
'''Important:''' A random root password is set during VM creation and printed to stdout. Record this!
 +
 
 +
=== Testing ===
 +
The new host should be accessible by root on via SSH port 2222 (and 22) over IPv6 and IPv4 from the internal network. Check 10.98.1.0/24 to see if it had any issues getting a static DHCP lease and if the MAC is correct.
 +
 
 +
[[Category:Infrastructure]]
 +
[[Category:Howtos]]
 +
[[Category:Needs restoration]]

Latest revision as of 16:02, 2 June 2020

This page describes how to manage the infra. See rtfm.txt for a guide to build it from scratch.

This covers setup of a VM on meltdown or spectre depending on if the service is critical or not.

Networks

Further information: Network

We should have the following networks in place:

  • meltdown and spectre br0 on eno1 <--> enp4s0 on joey. This is the main LUUG network.
    • 10.98.0.0/16 for VTLUUG NAT
    • IPv6 via prefix delegation on 607:b400:6:cc80/64
    • Global IPv4s via ARP proxying (See https://github.com/vtluug/scripts). Gateway is 128.173.88.1/22.
  • Static hosts are on 10.98.0.0/24, and DHCP is enabled on 10.98.1.0/24. This is mainly just useful for organization and quickly finding new hosts or other hosts on the network.
    • Static host IPs are assigned via static DHCP leases for IPv4.
    • Since we can't do this with IPv6, physical host IPs are determined upon first boot and VMs are assigned a specific MAC to pre-determine the SLAAC IP.
  • "Internet" (a CNS portal) <--> enp2s0 on joey. LUUG only has one of these, and port security is probably enabled.

DNS/DHCP:

  • All DNS entries for services run by VTLUUG are hosted on Gandi. Ask an officer if you want to change something.
  • jkh and Roddy own ece.vt.edu. DNS updates don't happen. echarlie can add IPv6-only records if needed to wuvt.vt.edu so we have PTRs.
  • joey runs DHCP via dnsmasq on enp4s0 (that is, 10.98.0.0/16). To change anything, modify it on https://github.com/vtluug/scripts first then pull that into root's homedir on joey. Please don't just update it on a machine without pushing your updates.
  • By default, hosts are accessible via SSH on ports 22 and 2222.

Adding a VTLUUG Service VM

VMs in this category are deployed to meltdown

Prerequisites:

Configure the network

  • Decide on a MAC address for the host and add it to SCRIPTS/router/lan/local_hosts
  • Add an entry to SCRIPTS/router/lan/dnsmasq.conf for static DHCP leases.
  • If a new IP in 128.173.88.1/22 is being added, also add it to SCRIPTS/router/proxy/arp_proxy.sh

Note: It is not recommended that you do the following steps if nobody is on campus in case something breaks.

Pull the latest changes to /root/scripts, update the configuration files, and restart the services:

  • Dnsmasq configuration is at /etc/dnsmasq.conf
  • ARP Proxy configuration is in /usr/local/bin

Add the VM configuration to ansible

Edit ANSIBLE_PATH/roles/deploy-vms/defaults/main.yml and add a new entry, following the existing format.

Note: if there are any entries in this file that are not present on the VM host, they will also be created. Comment out entries that shouldn't be created. Existing hosts are skipped.

Run ansible-playbook -v deploy.yml -i hosts.cfg -u papatux -k -K -e @VTLUUG_ADMIN_REPO/accounts.yml, using the correct vtluug-admin repo path.

Testing

The new host should be accessible by papatux on via SSH port 2222 (and 22) over IPv6 and IPv4 from the internal network. Check 10.98.1.0/24 to see if it had any issues getting a static DHCP lease and if the MAC is correct.

Adding a User VM

VMs in this category are deployed to spectre

Prerequisites:

Configure the network

  • Decide on a MAC address for the host and add it to SCRIPTS/router/lan/local_hosts
  • Add an entry to SCRIPTS/router/lan/dnsmasq.conf for static DHCP leases. (If applicable; you might not care for a test/temp VM).

Note: It is not recommended that you do the following steps if nobody is on campus in case something breaks.

Pull the latest changes to /root/scripts, update the configuration files, and restart the services:

  • Dnsmasq configuration is at /etc/dnsmasq.conf

Add the VM configuration to ansible

Edit ANSIBLE_PATH/roles/deploy-vms/defaults/main.yml and add a new entry under new_vms_spectre, following the existing format.

Note: if there are any entries in this file that are not present on the VM host, they will also be created. Comment out entries that shouldn't be created. Existing hosts are skipped.

Run ansible-playbook -v deploy.yml -i hosts.cfg -u papatux -k -K, using the correct vtluug-admin repo path.

Important: A random root password is set during VM creation and printed to stdout. Record this!

Testing

The new host should be accessible by root on via SSH port 2222 (and 22) over IPv6 and IPv4 from the internal network. Check 10.98.1.0/24 to see if it had any issues getting a static DHCP lease and if the MAC is correct.