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

相关推荐
江湖有缘2 分钟前
Fenrus + Docker 实战:构建简洁高效的浏览器新标签页
运维·docker·容器
乾元2 分钟前
如何把 CCIE / HCIE 的实验案例改造成 AI 驱动的工程项目——从“实验室能力”到“可交付系统”的完整迁移路径
大数据·运维·网络·人工智能·深度学习·安全·机器学习
lpfasd1235 分钟前
宝塔面板(BT Panel)集成雷池 SafeLine WAF(社区版)
运维
weixin_446260856 分钟前
XPipe: 轻松访问你的服务器基础设施 [特殊字符]
运维·服务器
TTGGGFF7 分钟前
GLM-4V-9B 视觉多模态模型本地部署教程【保姆级教程】
linux·运维·服务器·图文对话
r***01387 分钟前
Nginx代理到https地址忽略证书验证配置
运维·nginx·https
xiaobaishuoAI10 分钟前
后端工程化实战指南:从规范到自动化,打造高效协作体系
java·大数据·运维·人工智能·maven·devops·geo
Hello.Reader26 分钟前
PyFlink Configuration 一次讲透怎么配、配哪些、怎么“调得快且稳”
运维·服务器·python·flink
__雨夜星辰__27 分钟前
VMware 17 下 Ubuntu 虚拟机与宿主机间复制粘贴失效问题
linux·运维·ubuntu
prettyxian30 分钟前
【linux】进程调度:优先级、时间片与O(1)算法
linux·运维·服务器