Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
cloudappliance/multihomed [2018_05_30 14:34] – created kamrancloudappliance/multihomed [2018_09_03 10:02] – [Adding a Second Network Interface to the File Fabric™ For Administration (Draft)] dan
Line 1: Line 1:
-# Adding a Second Network Interface to the File Fabric™ For Administration (Draft)+# Adding a Second Network Interface to the File Fabric™ For Administration
  
 ## Overview ## Overview
-File Fabric™ administrators may wish to add a second network interface to the File Fabric™ appliance so that server management can be done without using with the File Fabric’s™ application network interface.  These notes, which are intended for experienced Linux system administrators who also have a good understanding of File Fabric™ system administration, summarize how to do this.  Extensive File Fabric™ application knowledge is not needed.+File Fabric™ administrators may wish to add a second network interface to the File Fabric™ appliance so that server management can be done without using with the File Fabric’s™ application network interface.  These notes, which are intended for experienced Linux system administrators who also have a good understanding of File Fabric™ system administration, summarize how to do this.  Extensive File Fabric application knowledge is not needed.
  
 The procedure consists of two parts: The procedure consists of two parts:
 +
 1. Changing the File Fabric™ appliance’s configuration so that a specific IP address will be used for all network access to the File Fabric. 1. Changing the File Fabric™ appliance’s configuration so that a specific IP address will be used for all network access to the File Fabric.
 2. Establishing a second network interface with its own IP address for server management. 2. Establishing a second network interface with its own IP address for server management.
Line 17: Line 18:
  
 These notes refer to two IP addresses: These notes refer to two IP addresses:
 +
 - *IPADDRESS*  - the IPV4 address of the interface you will use for the File Fabric™. - *IPADDRESS*  - the IPV4 address of the interface you will use for the File Fabric™.
 - *IPADMINADDRESS* – the IPV4 or IPV6 address you will use for server management. - *IPADMINADDRESS* – the IPV4 or IPV6 address you will use for server management.
  
-Changing the File Fabric™ Appliance’s Configuration +## Changing the File Fabric™ Appliance’s Configuration 
 ### Apache HTTPD ### Apache HTTPD
 ####HTTP Protocol ####HTTP Protocol
Line 26: Line 28:
 vi /etc/httpd/conf/httpd.conf vi /etc/httpd/conf/httpd.conf
 ``` ```
 +
 Change Listen directive from: Change Listen directive from:
 +
 +```
 Listen 80 Listen 80
 +```
 to: to:
 +
 +```
 Listen IPADDRESS:80 Listen IPADDRESS:80
 Listen 127.0.0.1:80 Listen 127.0.0.1:80
-HTTPS protocol +``` 
-vi /etc/httpd/conf.d/ssl.conf+ 
 +#### HTTPS protocol 
 +`vi /etc/httpd/conf.d/ssl.conf`
 Change listen ports from: Change listen ports from:
 +```
 Listen 443 https Listen 443 https
 +```
 to: to:
 +```
 Listen IPADDRESS:443 https Listen IPADDRESS:443 https
 Listen 127.0.0.1:443 https Listen 127.0.0.1:443 https
 +```
 Restart Apache Restart Apache
 +```
 systemctl stop httpd systemctl stop httpd
 systemctl start httpd systemctl start httpd
-FTP* Services +``` 
-FTP Service+### FTP* Services 
 +#### FTP Service 
 +```
 vi /var/www/smestorage/ftpserver/ftpserver.conf vi /var/www/smestorage/ftpserver/ftpserver.conf
 +```
 And bind to the IP address: And bind to the IP address:
 +```
 ftp_server_ip=IPADDRESS ftp_server_ip=IPADDRESS
-SFTP Service+``` 
 +#### SFTP Service 
 +```
 vi /var/www/smestorage/ftpserver/sftpserver/sftpserver.conf vi /var/www/smestorage/ftpserver/sftpserver/sftpserver.conf
 +```
 and replace: and replace:
 +```
 ftp_server_ip=0.0.0.0 ftp_server_ip=0.0.0.0
 +```
 with: with:
 +```
 ftp_server_ip=IPADDRESS ftp_server_ip=IPADDRESS
 +```
 Restart FTP Services Restart FTP Services
 +```
 systemctl stop cloudftp systemctl stop cloudftp
 systemctl start cloudftp systemctl start cloudftp
-Establishing a Second Network Interface +``` 
-ZZZ Fabric™ administrators may wish to add a second network interface to the File Fabric™ appliance so that server management can be done without using with the File Fabric’s™ application network +## Establishing a Second Network Interface 
-SSH IP Binding +Fabric™ administrators may wish to add a second network interface to the File Fabric™ appliance so that server management can be done without using with the File Fabric’s™ application network 
-  vi /etc/ssh/sshd_config+ 
 +### SSH IP Binding 
 +``` 
 +vi /etc/ssh/sshd_config 
 +```
 Change Listen IP address Change Listen IP address
 +```
 ListenAddress IPADMINADDRESS ListenAddress IPADMINADDRESS
 +```
 Restart service Restart service
 +```
 systemctl restart sshd systemctl restart sshd
 +```