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

相关推荐

  1. DM存储ontap系统修改管理IP

    2024-06-13 12:46:03       8 阅读
  2. 学生管理系统本地化存储

    2024-06-13 12:46:03       20 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-06-13 12:46:03       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-06-13 12:46:03       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-06-13 12:46:03       19 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-06-13 12:46:03       20 阅读

热门阅读

  1. Python多继承机制及方法解析顺序(MRO)深度解析

    2024-06-13 12:46:03       7 阅读
  2. 怎样区分公有云和私有云

    2024-06-13 12:46:03       8 阅读
  3. 【Python入门与进阶】Python对列表进行排序

    2024-06-13 12:46:03       7 阅读
  4. 【仿真建模-anylogic】泊松过程简介

    2024-06-13 12:46:03       6 阅读
  5. MySQL的索引类型,以及各自的作用

    2024-06-13 12:46:03       7 阅读
  6. C++设计模式---观察者模式

    2024-06-13 12:46:03       7 阅读
  7. Flutter状态管理

    2024-06-13 12:46:03       5 阅读