ensp中 AF 和 AC web端管理配置
以下教程经亲自操作可以实现,如有需要交流的地方,欢迎关注 大学资料网公众号 随时交流
ok,上期教大家创建了环回测试网卡
https://editor.csdn.net/md/?articleId=116545969
这期来看创建这个网卡可以玩什么操作:
1、AF web端管理
首先创建后的网卡地址为:
进入ensp,拉出来一朵云:
按照下面配置,把添加的换回测试网卡和软件之间添加映射关系
在拉出来一台防火墙:
The device is running!
############
Login authentication
Username:
Username:admin //默认登录名:admin
Password: //默认密码 :Admin@123
The password needs to be changed. Change now? [Y/N]: y //初次登陆需要修改密码
Please enter old password:
Please enter new password:
Please confirm new password:
Info: Your password has been changed. Save the change to survive a reboot.
*************************************************************************
* Copyright (C) 2014-2018 Huawei Technologies Co., Ltd. *
* All rights reserved. *
* Without the owner's prior written consent, *
* no decompiling or reverse-engineering shall be allowed. *
*************************************************************************
<USG6000V1>
可以看到ensp防火墙默认0/0/0为管理口,且地址为:192.168.0.1
这就是前面为什么创建了网卡之后把地址也改为192.168.0.9(同网段)
```bash
```bash
<USG6000V1>sy
Enter system view, return user view with Ctrl+Z.
[USG6000V1]int g00/0/0
[USG6000V1-GigabitEthernet0/0/0]dis this
2021-05-07 09:47:13.200
#
interface GigabitEthernet0/0/0
undo shutdown
ip binding vpn-instance default
ip address 192.168.0.1 255.255.255.0
alias GE0/METH
#
return
[USG6000V1-GigabitEthernet0/0/0]
开启web管理:
[
USG6000V1]web-manager enable //全局下开启网络管理
[USG6000V1-GigabitEthernet0/0/0]service-manage all permit //接口中允许各项服务
各项内容为:
[USG6000V1-GigabitEthernet0/0/0]service-manage ?
all ALL service
enable Service manage switch on/off
http HTTP service
https HTTPS service
ping Ping service
snmp SNMP service
ssh SSH service
telnet Telnet service
[USG6000V1-GigabitEthernet0/0/0]
此时去浏览器输入防火墙管理口的地址:192.168.0.1
即可访问AF WEB端,并对防火墙进行管理:
这里检查了一下物理机和ensp之间的连通性:
物理机可以ping到防火墙地址,但是防火墙ping不到物理机地址???
AC web管理
AC创建地址:
<AC6605>sy
Enter system view, return user view with Ctrl+Z.
[AC6605]interface Vlanif 1
[AC6605-Vlanif1]ip add 192.168.0.3 24
还需要开启http服务:
[AC6605]http server enable
This operation will take several minutes, please wait...
Error:Failed to enable HTTP server. //这里如果出现报错,是因为低版本不支持
升级到高版本之后:
访问:
https://192.168.0.3
登录
admin
admin@huawei.com
第一次登录需要修改密码:
ok,这次两边都是通的
ok,祝你网工之路一路顺利!