Contents
1. Setting up remote connection by SSH
SSH is a service for connecting remotely to a server and is basically running immediately after the OS is installed, but the default settings are somewhat insecure.
Here we will configure the default settings to increase the security of ssh connections.
1.1 SSH service configuration file changes
Modify the configuration file to change the SSH service settings.
The SSH service configuration file is "/etc/ssh/sshd_config".
1 |
# vi /etc/ssh/sshd_config |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $ # This is the sshd server system-wide configuration file. See # sshd_config(5) for more information. # This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin # The strategy used for options in the default sshd_config shipped with # OpenSSH is to specify options with their default value where # possible, but leave them commented. Uncommented options override the # default value. #Port 22 Port 2244 #AddressFamily any ListenAddress 0.0.0.0 #ListenAddress :: #HostKey /etc/ssh/ssh_host_rsa_key #HostKey /etc/ssh/ssh_host_ecdsa_key #HostKey /etc/ssh/ssh_host_ed25519_key # Ciphers and keying #RekeyLimit default none # Logging #SyslogFacility AUTH #LogLevel INFO # Authentication: #LoginGraceTime 2m PermitRootLogin no #StrictModes yes #MaxAuthTries 6 #MaxSessions 10 |
①Find "Port 22" and change it to any port number other than the Wernon port, this time to "Port 2244" and proceed (changing this port number alone will reduce unauthorized access).
②Find "#ListenAddress 0.0.0.0" and delete the preceding "#".
③Look for "#PermitRootLogin yes" and change it to "PermitRootLogin no".
Since the root user already knows the user name and can log in to the server with administrator privileges once the password is known, the setting is set to deny this.
Restart SSH
1 |
# systemctl restart sshd.service |
If this is not done, the next time you reboot, you will not be able to connect remotely via SSH. Please allow SSH port 2244 in the following firewall settings.
2.How to set up a firewall (firewalld)
In openSUSE, the firewall is set to firewalld by default and is enabled during OS installation.
To briefly explain firewalld, when setting up a communication control policy, communication permission/blocking rules are applied to predefined zones, and the zones are assigned to each NIC (network adapter).
2.1 How to use the firewall-cmd command to control "firewalld".
1)About Zones
Nine zones are provided by default
zone | Communication Permission Service | Description. |
block | None All external connections are blocked | Setting cannot be changed Return "CIMP Pohibited" when blocked, return communication is also allowed when communicating from inside |
dmz | ssh | Zones defined for dmz |
drop | None All external communications are blocked | Cannot change settings Internal communication can be sent, but return communication from the outside is blocked, resulting in all communication not being possible. |
external | ssh | Zone defined for use in connection with external networks, such as routers with IP masquerade enabled. |
home | dhcpv6-client ipp-client mdns samba-client ssh | Zones defined for use at home, etc. |
internal | dhcpv6-client ipp-client mdns samba-client | Zone defined for use in the internal network. |
public | dhcpv6-client ssh | Zones defined for use in public places. |
trusted | Allow all communication | Setting cannot be changed |
work | dhcpv6-client ipp-client ssh | Zones defined for use in work areas such as the workplace. |
2)Command to check the status and settings of firewalld
①Check firewalld operation status
1 |
# firewall-cmd --state |
If "firewalld" is running, "running" will be displayed; if it is not running, "not running" will be displayed.
OR
1 2 3 4 5 6 7 8 9 10 11 12 |
# systemctl status firewalld ● firewalld.service - firewalld - dynamic firewall daemon Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor> Active: active (running) since Sun 2023-06-11 08:17:14 JST; 28min ago Docs: man:firewalld(1) Main PID: 724 (firewalld) Tasks: 2 (limit: 4592) CGroup: /system.slice/firewalld.service mq 724 /usr/bin/python3 /usr/sbin/firewalld --nofork --nopid Jun 11 08:17:13 Lepard systemd[1]: Starting firewalld - dynamic firewall daemon> Jun 11 08:17:14 Lepard systemd[1]: Started firewalld - dynamic firewall daemon. |
※If stopped
Active: inactive (dead) is displayed, indicating that firewalld is stopped
➁Show default zone settings
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# firewall-cmd --list-all public (active) target: default icmp-block-inversion: no interfaces: eth0 sources: services: dhcpv6-client ssh ports: protocols: forward: no masquerade: no forward-ports: source-ports: icmp-blocks: rich rules: |
In the above example, the "public" zone is the "default" setting and is assigned to the "eth0" NIC, and the services "dhcpv6-client" and "ssh" are allowed, etc.
➂Show the settings for the specified zone.
The following example shows how to display the settings for the "dmz" zone
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# firewall-cmd --zone=dmz --list-all dmz target: default icmp-block-inversion: no interfaces: sources: services: ssh ports: protocols: forward: no masquerade: no forward-ports: source-ports: icmp-blocks: rich rules: |
④About the "--permanent" option
In order to prevent the settings from being lost when the server is restarted or the "firewalld" service is restarted, the "--permanent" option must be used.
To prevent the settings from being lost when the server is restarted or the "firewalld" service is restarted, the "--permanent" option must be used to configure the settings. In this case, if the "--permanent" option is specified, the settings will not be reflected in "firewalld" as they are, so it is necessary to reflect the settings using "fiewall-cmd --reload".
As an example, to use the HTTP service permanently without being initialized even if the system is rebooted
1 2 |
# firewall-cmd --add-service=http --permanent # firewall-cmd --reload |
⑤Adding and removing services to and from a zone
To add an already defined service to a zone, use "-add-service" to specify the service
# firewall-cmd [--permanent] --zone=zone name --add-service=service name
If you want to permanently add services to a zone, you must configure it with the "--permanent" option.
Example configuration for temporarily adding a service
1 2 |
# firewall-cmd --zone=public --add-service=http success |
Example of adding a service permanently
Example of adding the "http" service to a "public" zone with the "--permanent" option
1 2 |
# firewall-cmd --permanent --zone=public --add-service=http success |
⑥service deletion
Use "--remove-service" to remove a service configured for a zone
Remove the "http" service from the "public" zone as an example
1 2 3 4 |
# firewall-cmd --permanent --zone=public --remove-service=http success # firewall-cmd --reload success |
⑦Add or remove ports to a zone
Adding a port by specifying a zone
Use "--add-port" to add a port to a zone
Configuration Example
Let's add a rule for port number "10022" and protocol "TCP" in the "public" zone
1 2 3 4 |
# firewall-cmd --permanent --zone=public --add-port=10022/tcp success # firewall-cmd --reload success |
Deleting a port by specifying a zone
Use "--remove-port" to remove a port from a zone
Configuration Example
Delete the "10022/tcp" rule for the "public" zone added earlier
1 2 3 4 |
# firewall-cmd --permanent --zone=public --remove-port=10022/tcp success # firewall-cmd --reload success |
⑧How to start and stop
Since firewalld is controlled by systemd, use the systemctl command to start and stop it.
Start firewalld
1 2 3 4 |
Start firewalld # systemctl start firewalld Stop firewalld # systemctl stop firewalld |
2.2 Allow modified SSH port 2244
1 2 |
# firewall-cmd --add-port=2244/tcp --permanent # firewall-cmd --reload |
3.Remote connection from Windows
Configuration in Windows
Start setting up a remote connection from Windows, using "Tera Term" as the terminal emulator.
Start Tera Term, cancel the startup screen, and then select "New Connection" from "File" in the Tera Term menu.
Enter the following information on the next screen.
Host : Server IP Address
TCP port : SSH port number changed above
Enter the following information on the next screen.
User name : General Login Username
Passphrase : Password for the above user
If the information is correct, you should be able to log in normally as shown below.
4. NTP Server Settings
Install Chrony and build an NTP server for time synchronization. Note that NTP uses 123/UDP.
4.1 Chrony Install
1 |
# zypper -n install chrony |
4.2 Chrony Settings
1 2 3 4 5 6 7 |
# vi /etc/chrony.conf # Line 4:Add server ntp.nict.jp iburst server ntp1.jst.mfeed.ad.jp iburst # Per line 25: Added a range of time synchronization allowed allow 192.168.11.0/24 |
1 2 |
# systemctl start chronyd # systemctl enable chronyd |
4.3 Open NTP port
If Firewalld is enabled, permission for NTP service is required. Note that NTP uses 123/UDP.
1 2 3 4 |
# firewall-cmd --add-service=ntp --permanent success # firewall-cmd --reload success |
4.4 operation check
1 2 3 4 5 6 7 |
# chronyc sources MS Name/IP address Stratum Poll Reach LastRx Last sample =============================================================================== ^- ntp-a3.nict.go.jp 1 6 17 10 -3087us[-3087us] +/- 7234us ^- ntp1.jst.mfeed.ad.jp 2 6 17 10 -2377us[-2377us] +/- 54ms ^* ipv4.ntp3.rbauman.com 2 6 17 11 -1494us[ +122us] +/- 9062us |