Access Anywhere administrators may wish to add a second network interface to the Access Anywhere appliance so that server management can be done without using with Access Anywhere’s™ application network interface. These notes, which are intended for experienced Linux system administrators who also have a good understanding of Access Anywhere™ system administration, summarize how to do this. Extensive Access Anywhere application knowledge is not needed.
The procedure consists of two parts:
Important Points to Note Before Beginning
These notes refer to two IP addresses:
vi /etc/httpd/conf/httpd.conf
Change Listen directive from:
Listen 80
to:
Listen IPADDRESS:80 Listen 127.0.0.1:80
vi /etc/httpd/conf.d/ssl.conf
Change listen ports from:
Listen 443 https
to:
Listen IPADDRESS:443 https Listen 127.0.0.1:443 https
Restart Apache
systemctl stop httpd systemctl start httpd
vi /var/www/smestorage/ftpserver/ftpserver.conf
And bind to the IP address:
ftp_server_ip=IPADDRESS
vi /var/www/smestorage/ftpserver/sftpserver/sftpserver.conf
and replace:
ftp_server_ip=0.0.0.0
with:
ftp_server_ip=IPADDRESS
Restart FTP Services
systemctl stop cloudftp systemctl start cloudftp
Fabric™ administrators may wish to add a second network interface to Access Anywhere™ appliance so that server management can be done without using with Access Anywhere’s™ application network
vi /etc/ssh/sshd_config
Change Listen IP address
ListenAddress IPADMINADDRESS
Restart service
systemctl restart sshd