当使用 zonecfg 实用程序配置区域时,请使用 revert 子命令来撤消对区域配置执行的资源设置。
要执行此过程,您必须是全局区域中的全局管理员。
成为超级用户或承担主管理员角色。
有关如何创建该角色并将其指定给用户,请参见《系统管理指南:基本管理》中的“使用 RBAC 和 Solaris 管理工具(任务图)”。
在配置名为 tmp-zone 的区域时,键入 info 查看您的配置:
zonecfg:tmp-zone> info |
配置的 net 资源段显示如下:
. . . fs: dir: /tmp special: swap type: tmpfs net: address: 192.168.0.1 physical: eri0 device match: /dev/pts/* . . . |
删除网络地址:
zonecfg:tmp-zone> remove net address=192.168.0.1 |
检验 net 条目是否已被删除。
zonecfg:tmp-zone> info |
. . . fs: dir: /tmp special: swap type: tmpfs device match: /dev/pts/* . . . |
键入 revert。
zonecfg:tmp-zone> revert |
对下面的问题回答是:
Are you sure you want to revert (y/[n])? y |
检验网络地址是否再次出现:
zonecfg:tmp-zone> info |
. . . fs: dir: /tmp special: swap type: tmpfs net: address: 192.168.0.1 physical: eri0 device match: /dev/pts/* . . . |