DM存储ontap系统修改管理IP

存储已配置完成在使用,修改管理ip不会影响生产

旧管理IP 新管理IP
192.0.2.1/24 192.0.10.1/24
192.0.2.2/24 192.0.10.2/24
192.0.2.3/24 192.0.10.3/24

旧网关:192.0.2.254

新网关:192.0.10.254

查看现有的管理IP信息

cluster1::> network interface show
            Logical    Status     Network            Current       Current Is
Vserver     Interface  Admin/Oper Address/Mask       Node          Port    Home
----------- ---------- ---------- ------------------ ------------- ------- ----
cluster1
            cluster_mgmt
                       up/up      192.0.2.1/192      node0         e0M     true
            node0_mgmt1
                       up/up      192.0.2.2/192      node0         e0M     true
            node1_mgmt1
                       up/up      192.0.2.3/192      node1         e0M     true
Cluster
            node0_clus1
                       up/up      192.0.2.66/192     node0         e0a     true
            node0_clus2
                       up/up      192.0.2.67/192     node0         e0b     true
            node1_clus1
                       up/up      192.0.2.68/192     node1         e0a     true
            node1_clus2
                       up/up      192.0.2.69/192     node1         e0b     true

可以看到有3个管理IP, cluster_mgmt、node0_mgmt1、node1_mgmt1

修改3个管理IP,没有修改顺序要求,但是要注意修改完,要能访问到管理IP,远程修改时,需要先添加路由

查看已有路由信息

cluster1::> route show
Vserver              Destination     Gateway         Metric
------------------- --------------- --------------- ------
cluster1
                      0.0.0.0/0       192.0.2.254     20

添加路由,不懂的参数,可以按tab键补齐

cluster1::> route create -vserver cluster1 -destination 0.0.0.0/0 -gateway 192.0.10.254

修改管理IP

cluster1::> network interface modify -vserver cluster1 -lif cluster_mgmt -service-policy default-management -address 192.0.10.1 -netmask 255.255.255.0

cluster1::> network interface modify -vserver node0_mgmt1 -lif cluster_mgmt -service-policy default-management -address 192.0.10.2 -netmask 255.255.255.0

cluster1::> network interface modify -vserver node1_mgmt1 -lif cluster_mgmt -service-policy default-management -address 192.0.10.3 -netmask 255.255.255.0

修改完ping一下

cluster1::> ping -node node0_mgmt1 -destination 10.98.16.164
10.98.16.164 is alive

alive表示是通的

最后修改服务处理器ip(SP)

登录web界面,到集群信息里面,修改服务处理器ip

相关推荐
乙己4073 分钟前
计算机网络——网络层
运维·服务器·计算机网络
不会飞的小龙人2 小时前
Docker Compose创建镜像服务
linux·运维·docker·容器·镜像
不会飞的小龙人2 小时前
Docker基础安装与使用
linux·运维·docker·容器
小歆8845 小时前
100%全国产化时钟服务器、全国产化校时服务器、全国产化授时服务器
运维·服务器
翻滚吧键盘5 小时前
debian中apt的配置与解析
运维·debian
workingman_li5 小时前
centos虚拟机异常关闭,导致数据出现问题
linux·运维·centos
Jackson~Y6 小时前
Linux(LAMP)
linux·运维·服务器
不知 不知7 小时前
最新-CentOS 7安装1 Panel Linux 服务器运维管理面板
linux·运维·服务器·centos
晚秋贰拾伍8 小时前
设计模式的艺术-职责链模式
运维·设计模式·运维开发·责任链模式·开闭原则·单一职责原则
花糖纸木9 小时前
【Linux】深刻理解动静态库
linux·运维·服务器