Enable SL4000 Drive Access Using MDVOP

Use MDVOP to enable OKM access on the drives.

The examples in this section use the SL4000 OkmIpv4Address and the 192.168.0.0 address to enable access to all drives in the Base and DEMs.

Windows:

  1. Display the current routes

    route print

  2. Add the route for all modules containing drives in the SL4000 (Base plus the DEMs) in the form:

    route add -p 192.168.0.0 mask 255.255.0.0 OkmIpv4Address

    Example:

    route add -p 192.168.0.0 mask 255.255.0.0 10.80.46.89
  3. Check that the route was added.

    route print

Solaris:

  1. Display the current routes.

    netstat -rn

  2. Add the route for all modules containing drives in the SL4000 (Base plus the DEMs) in the form:

    route add 192.168.0.0 OkmIpv4Address

    Example:

    route add 192.168.0.0 10.80.46.89
  3. Check that the route was added.

    netstat -rn

Linux:

  1. Display the current routes.

    netstat -rn

  2. Add the route for all modules containing drives in the SL4000 (Base plus the DEMs) in the form:

    route add -net 192.168.0.0 netmask 255.255.0.0 gw OkmIpv4Address dev eth1

    Example:

    route add -net 192.168.0.0 netmask 255.255.0.0 gw 10.80.46.89 dev eth1
  3. Check that the route was added.

    netstat -rn