Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

In band Setup

Yashodhan Pise edited this page Jun 1, 2021 · 32 revisions

RBOD Side

  1. Set static IPS for IP over SES to each controller and Apply. Inband-2

  2. Ensure that the In-Band SES checkbox is unchecked

  3. Make sure that LUN# '0' is not assigned to any of the volumes.

NOTE: Ensure LUN0 is not mapped to any volume, as it would be used for in-band communication

Server Side

Using Salt

Execute command on primary node:
$ salt "*" state.apply components.system.inband

Manually

  1. Install package scsi-network-relay from ftp://hst.lcd.colo.seagate.com/scsi-network-relay
    Or curl -O http://cortx-storage.colo.seagate.com/prvsnr/scsi-network-relay-1.1.0-47.x86_64.rpm

  2. Install the driver using command: yum install -y scsi-network-relay-1.1.0-47.x86_64.rpm

  3. Create file /etc/scsi-network-relay.conf on both nodes with contents as under:

Server Node 1

# Default settings for the first host and array
mc-a-address = 10.0.0.2
mc-b-address = 10.0.0.3
fix-addresses = false
node-id = 1
address = 10.0.0.4/24

Server Node 2

# Default settings for the first host and array
mc-a-address = 10.0.0.2
mc-b-address = 10.0.0.3
fix-addresses = false
node-id = 2
address = 10.0.0.5/24

On Both Nodes

  1. Start and Enable service:
systemctl enable scsi-network-relay 
systemctl start scsi-network-relay 

  1. Check services up and running
systemctl status scsi-network-relay
  1. Check cluster private ips are able to ping from your node
ping -c1 10.0.0.2
ping -c1 10.0.0.3
  1. If you are not able to ping, then restart the service
systemctl restart scsi-network-relay

Connecting Over SOCKv5 Proxy

Setup Proxy over SOCKS protocol

On User System Bash Terminal

Use command: ssh -D 4000 -q -C -N root@<system_fqdn>
Example: ssh -D 4000 -q -C -N root@sm10-r20.pun.seagate.com

In Firefox Settings - Configure

firefox_settings

Revert to Out-of-Band

  • Connect to controller from one of server nodes using command:
    $ ssh manage@10.0.0.2
    OR
    $ ssh manage@10.0.0.3

  • Restore DHCP on storage controllers:
    $ set network-parameters dhcp

  • Stop isci-relay-network service on both nodes
    $ systemctl stop scsi-network-relay
    $ systemctl disable scsi-network-relay

Clone this wiki locally