按图5-5所示拓扑连接网络。清空路由器配置。注意:两个路由器用AS专用 接口跳线连接 怎样清空路由器配置
时间: 2024-12-18 20:28:18 浏览: 13
清空路由器配置通常涉及以下几个步骤:
1. **进入系统视图**:
```plaintext
<Router-A> system-view
```
2. **重置当前配置**:
```plaintext
[Router-A] reset saved-configuration
```
这一步会提示你确认操作,因为这将清除所有保存的配置文件。
```plaintext
Warning: The action will delete the saved configuration in the device.
The configuration will be erased to reconfigure. Continue? [Y/N]: y
```
3. **重启路由器**:
```plaintext
[Router-A] reboot
```
同样,这一步也会提示你确认操作,因为重启会导致设备暂时断开连接。
```plaintext
System will reboot! Continue? [Y/N]: y
```
4. **等待路由器重启**:
重启后,路由器将以出厂默认配置启动。
### 完整命令序列
#### 清空Router-A的配置
```plaintext
<Router-A> system-view
[Router-A] reset saved-configuration
Warning: The action will delete the saved configuration in the device.
The configuration will be erased to reconfigure. Continue? [Y/N]: y
[Router-A] reboot
System will reboot! Continue? [Y/N]: y
```
#### 清空Router-B的配置
```plaintext
<Router-B> system-view
[Router-B] reset saved-configuration
Warning: The action will delete the saved configuration in the device.
The configuration will be erased to reconfigure. Continue? [Y/N]: y
[Router-B] reboot
System will reboot! Continue? [Y/N]: y
```
### 注意事项
- **备份配置**:在清空配置前,建议先备份当前配置,以防止重要数据丢失。
- **物理连接**:确保两个路由器之间的AS专用接口跳线连接正确,避免物理层出现问题。
- **重新配置**:清空配置后,需要重新进行基本配置,如设置设备名称、接口IP地址等。
按照以上步骤操作,即可清空路由器的配置并准备进行新的实验配置。
阅读全文