<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; 网络设备</title>
	<atom:link href="http://www.osyunwei.com/archives/category/network/network-devices/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Wed, 01 Apr 2026 08:27:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>在X86平台物理机上安装OpenWrt软路由系统</title>
		<link>https://www.osyunwei.com/archives/16968.html</link>
		<comments>https://www.osyunwei.com/archives/16968.html#comments</comments>
		<pubDate>Mon, 02 Mar 2026 15:00:04 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16968</guid>
		<description><![CDATA[OpenWrt相关教程： 在ESXI上部署OpenWrt软路由系统 https://www.osyunwei.com/archives/16907.html OpenWrt软路由系统扩容磁盘 https://www.osyunwei.com/archives/16933.html 在OpenWrt软路由系统中设置虚拟专用网拨号 https://www.osyunwei.com/archives/16944.html 对OpenWrt的squashfs格式镜像进行扩容操作 https://www.osyunwei.com/archives/16960.html 简单说明： 在X86平台物理机上安装OpenWrt软路由系统，建议使用ext4格式的镜像文件，安装后可以扩容，当然也能选择提前扩容好的squashfs格式的镜像文件来安装。 下载地址： https://downloads.openwrt.org/releases/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-generic-ext4-combined.img.gz 所需工具： 1、可以从PE系统启动的u盘 2、写盘软件DiskImage: https://roadkil.net/downloads.php https://roadkil.net/download.php?FileID=409&#038;ProgramID=12 3、OpenWrt镜像文件openwrt-24.10.5-x86-64-generic-ext4-combined.img 把openwrt-24.10.5-x86-64-generic-ext4-combined.img和DiskImage拷贝到u盘根目录下面 我这里有之前扩容好的 squashfs格式的 2GB镜像文件： openwrt-24.10.5-x86-64-generic-squashfs-combined.img 以这个镜像为例来安装 从u盘启动，进PE系统 打开DiskImage_1_6_WinAll.exe写盘工具 切换到Write Image Write Image to：选择要安装OpenWrt的磁盘，一定要选择正确 Source：选择我们下载好的OpenWrt镜像文件 确认无误后，点Start开始写盘操作 再次确认，点是 等待执行完成，然后关闭电脑，拔掉u盘，开机进bios设置刚刚写入OpenWrt镜像的硬盘为第一启动，保存重启 会看到下面的界面，等待启动完成。 这个时候OpenWrt已经安装完成了。 简单设置OpenWrt系统 默认root登录密码为空 默认第一款网卡是lan，默认ip地址是192.168.1.1 我们修改为自己需要的ip地址 vi /etc/config/network config interface 'lan' option device 'br-lan' option proto 'static' [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16968.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16968.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>对OpenWrt的squashfs格式镜像进行扩容操作</title>
		<link>https://www.osyunwei.com/archives/16960.html</link>
		<comments>https://www.osyunwei.com/archives/16960.html#comments</comments>
		<pubDate>Mon, 02 Mar 2026 10:30:39 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16960</guid>
		<description><![CDATA[OpenWrt安装镜像有ext4和squashfs两种格式，ext4在安装完成后可以对磁盘进行扩容，squashfs则不能扩容。 但是，我们可以在安装前对squashfs镜像扩容操作，扩容完成之后再安装。 我们需要在Linux系统下操作，我这里用的是AnolisOS-8.10系统 1、下载OpenWRT的gz镜像上传后解压 镜像下载地址： https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-generic-squashfs-combined.img.gz #解压 gzip -d openwrt-24.10.5-x86-64-generic-squashfs-combined.img.gz #扩容，镜像文件的末尾追加2GB的空白数据 #用dd命令，2M即一次，增加2M的空间，增加1024次，也就是2G的空间 dd if=/dev/zero bs=2M count=1024 &#62;&#62; openwrt-24.10.5-x86-64-generic-squashfs-combined.img #用parted命令进入img镜像，把刚才增加的空间扩展进去 parted openwrt-24.10.5-x86-64-generic-squashfs-combined.img print #用print查看一下分区，发现有两个区 Number Start End Size Type File system Flags 1 262kB 17.0MB 16.8MB primary ext2 boot 2 17.3MB 126MB 109MB primary #把增加的空间扩容给第二个分区 resizepart 2 100% #完成，退出 quit 再次查看镜像分区大小，现在第二个分区已经显示是2GB了 现在就可以用这个镜像文件来安装了，装好之后磁盘空间就是2GB 至此，对OpenWrt的squashfs格式镜像进行扩容操作完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/16960.html» [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16960.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16960.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在OpenWrt软路由系统中设置虚拟专用网拨号</title>
		<link>https://www.osyunwei.com/archives/16944.html</link>
		<comments>https://www.osyunwei.com/archives/16944.html#comments</comments>
		<pubDate>Mon, 02 Mar 2026 09:07:04 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16944</guid>
		<description><![CDATA[在OpenWrt软路由系统中设置虚拟专用网拨号，通常是指将OpenWrt路由器配置为‌OpenVPN客户端‌，以连接到远程的OpenVPN服务器（如公司内网或商业VPN服务），从而实现安全的远程访问。 在ESXI上部署OpenWrt软路由系统 https://www.osyunwei.com/archives/16907.html OpenWrt软路由系统扩容磁盘 https://www.osyunwei.com/archives/16933.html 1、安装openvpn程序包 在ssh命令行操作，或者在web控制台安装。 opkg update #更新仓库 opkg install openvpn-openssl #安装 OpenSSL 版本的 OpenVPN opkg install luci-app-openvpn #安装 LuCI 网页管理插件 opkg install ca-bundle #安装 LuCI 网页管理插件 /etc/init.d/rpcd restart #重启 LuCI 服务（让菜单显示出来） 2、导入openvpn配置文件 openvpn配置文件的配置文件一般都是.ovpn后缀结尾的 先需要检查下这个文件，看有没有下面的参数配置，如果没有需要添加 #添加此配置，否则客户端连接后获取不到vpn的网络，强制要求客户端将所有互联网流量重定向到vpn redirect-gateway def1 #在open配置文件里面添加账号密码路径 auth-user-pass /etc/openvpn/userpass 进入到ssh控制台，编辑账号密码文件，添加你的vpn登录账号和密码，上面写账号，下面写密码 vi /etc/openvpn/userpass vpnuser 123456 :wq! #保存退出 chmod 600 /etc/openvpn/userpass #设置只读权限 ls [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16944.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16944.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenWrt软路由系统扩容磁盘</title>
		<link>https://www.osyunwei.com/archives/16933.html</link>
		<comments>https://www.osyunwei.com/archives/16933.html#comments</comments>
		<pubDate>Sun, 01 Mar 2026 15:19:15 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[OpenWrt]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16933</guid>
		<description><![CDATA[在ESXI上部署OpenWrt软路由系统 https://www.osyunwei.com/archives/16907.html 前提条件：使用ext4文件系统的OpenWrt支持安装后扩容磁盘，如果是squashfs文件系统则不支持安装后扩容 扩容操作步骤，如果是虚拟机安装的OpenWrt系统，先关机给虚拟机磁盘镜像扩容，然后启动虚拟机。 ssh登录到OpenWrt终端进行操作 1、下载扩容脚本 在终端中输入命令下载所需脚本并重命名为expand-root.sh wget -U "" -O expand-root.sh "https://openwrt.org/_export/code/docs/guide-user/advanced/expand_root?codeblock=0" 2、运行下载的脚本以生成扩容脚本 . ./expand-root.sh 3、安装扩容工具 opkg update opkg install parted losetup resize2fs 4. 运行扩容命令 sh /etc/uci-defaults/70-rootpt-resize 执行过程中路由器会自动重启，等设备启动完成后扩容成功。 原理： 脚本会把扩容逻辑写入 /etc/uci-defaults/ 脚本成功运行后扩容成功并创建了touch /etc/rootpt-resize这个文件 重启OpenWrt或者再次运行脚本的时候，系统会检测到 /etc/rootpt-resize 已经存在，它便认为“扩容任务已完成”，直接跳过了后续所有操作 如果磁盘空间又不够用了需要扩容，先在虚拟机里面增加磁盘空间，要先关机，再打开，然后删除这2个文件，再重启。 删除第一个文件：告诉系统“分区还没扩好”，触发第一步（parted）。 删除第二个文件：告诉系统“文件系统还没拉伸”，触发第二步（resize2fs）。 rm -f /etc/rootpt-resize rm -f /etc/rootfs-resize reboot #重启系统后会自动扩容 至此，OpenWrt软路由系统扩容磁盘完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/16933.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » OpenWrt软路由系统扩容磁盘<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16933.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16933.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在ESXI上部署OpenWrt软路由系统</title>
		<link>https://www.osyunwei.com/archives/16907.html</link>
		<comments>https://www.osyunwei.com/archives/16907.html#comments</comments>
		<pubDate>Sun, 01 Mar 2026 09:19:12 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Router]]></category>
		<category><![CDATA[ESXI]]></category>
		<category><![CDATA[OpenWrt]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=16907</guid>
		<description><![CDATA[1、简单介绍 OpenWrt 是一个基于Linux的开源路由器系统，可以安装在普通PC电脑上，也能安装在虚拟机中，还可以安装在支持OpenWrt系统的硬件路由器上。 软件生态丰富：拥有数千个免费插件，可轻松实现科学上网（OpenVPN, Clash, WireGuard）等。 2、官方网站下载 https://downloads.openwrt.org/releases/ https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/ 我们选择x86/64/格式的镜像 有4种类型的镜像文件： 引导方式：UEFI 还是 Legacy BIOS 启动 文件系统：ext4 还是 squashfs generic-ext4-combined-efi.img.gz generic-ext4-combined.img.gz generic-squashfs-combined-efi.img.gz generic-squashfs-combined.img.gz 一般选择generic-ext4-combined.img.gz镜像就可以。 https://downloads.openwrt.org/releases/24.10.5/targets/x86/64/openwrt-24.10.5-x86-64-generic-ext4-combined.img.gz 注意： .img 文件本身就已经是一个完整的、包含分区表和文件系统的硬盘镜像了。 它不像 Windows 的 .iso 文件那样是一个“安装光盘”，需要你运行安装程序去格式化硬盘、复制文件。 .img 文件就像是已经装好系统并拔下来的硬盘，你只需要把它“插”到虚拟机上即可。 3、转换img固件为ESXi可以识别的镜像 安装转换工具StarWind V2V Converter 下载地址： https://www.starwindsoftware.com/tmplink/starwindconverter.exe 修改镜像名称，把下载好的镜像openwrt-24.10.5-x86-64-generic-ext4-combined.img改名为：openwrt24.img 安装并打开StarWind V2V Converter 选择 local file本地文件 选择刚刚修改过名字的镜像文件 选择转换位置local file 选择格式类型VMDK 选择虚拟机硬盘文件格式类型：这里选择ESXi 选择存储位置 转换 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/16907.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/16907.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>锐捷交换机基本配置</title>
		<link>https://www.osyunwei.com/archives/15354.html</link>
		<comments>https://www.osyunwei.com/archives/15354.html#comments</comments>
		<pubDate>Fri, 28 Feb 2025 09:15:33 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Switch]]></category>
		<category><![CDATA[交换机]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15354</guid>
		<description><![CDATA[1、配置ip地址、子网掩码、默认网关 锐捷交换机通常需要将物理接口分配到一个 VLAN，并在对应的 VLAN 接口上配置 IP 地址。 #查看型号 show version #进入特权模式 enable #进入全局配置模式 configure terminal #查看所有接口的状态 show interfaces status #查看 GigabitEthernet 0/0 的详细信息 show interface GigabitEthernet 0/0 #创建 VLAN 接口 vlan 10 name VLAN10 exit #将接口分配到 VLAN 10 interface GigabitEthernet 0/0 switchport access vlan 10 no shutdown exit #配置 VLAN 接口 IP 地址 interface Vlan [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15354.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15354.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>华为HUSG0000V防火墙配置</title>
		<link>https://www.osyunwei.com/archives/14689.html</link>
		<comments>https://www.osyunwei.com/archives/14689.html#comments</comments>
		<pubDate>Tue, 08 Oct 2024 13:33:11 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Firewall]]></category>
		<category><![CDATA[eve-ng]]></category>
		<category><![CDATA[华为]]></category>
		<category><![CDATA[防火墙]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=14689</guid>
		<description><![CDATA[配置环境：EVE-NG模拟器导入华为HUSG0000V镜像来操作 配置参考文档： https://support.huawei.com/enterprise/zh/doc/EDOC1000118079?section=j005 https://support.huawei.com/enterprise/zh/doc/EDOC1000118079?section=j009 需求：防火墙通过静态IPv4地址接入互联网 IP地址：10.189.189.234/24 默认网关：10.189.189.1 DNS Server地址：218.30.19.40 内部网络中的PC使用私网网段：10.3.0.0/24实现互通，由FW为PC分配私网地址、DNS Server地址等网络参数 内部网络中的PC可以访问Internet 操作步骤 0、基础设置 &#60;USG6000V2&#62;undo terminal monitor #关闭终端显示调试/日志/告警信息功能 &#60;USG6000V2&#62;system [USG6000V2]display interface brief [USG6000V2]sysname FW #修改设备名称为FW 1、配置各个接口IP地址并将其加入对应的安全区域 [FW]interface GigabitEthernet 1/0/0 [FW-GigabitEthernet1/0/0]ip address 10.189.189.234 255.255.255.0 #外网接口 [FW-GigabitEthernet1/0/0]quit [FW]interface GigabitEthernet 1/0/1 [FW-GigabitEthernet1/0/1]ip address 10.3.0.1 255.255.255.0 #内网接口 [FW-GigabitEthernet1/0/1]quit [FW]firewall zone untrust [FW-zone-untrust]add interface GigabitEthernet 1/0/0 [FW-zone-untrust]quit [FW]firewall zone trust [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/14689.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/14689.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EVE-NG模拟器导入镜像操作</title>
		<link>https://www.osyunwei.com/archives/14587.html</link>
		<comments>https://www.osyunwei.com/archives/14587.html#comments</comments>
		<pubDate>Wed, 25 Sep 2024 09:55:29 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[网络设备]]></category>
		<category><![CDATA[eve-ng]]></category>
		<category><![CDATA[模拟器]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=14587</guid>
		<description><![CDATA[1、镜像文件有Dynamips、IOL、QEMU三种，目前使用QEMU镜像比较多 Dynamips上传到：/opt/unetlab/addons/dynamips IOL上传到：/opt/unetlab/addons/iol/bin QEMU上传到：/opt/unetlab/addons/qemu 图标上传到：/opt/unetlab/html/images/icons yml配置文件上传目录：/opt/unetlab/html/templastes/ 默认安装完成后，部分设备的图标和yml配置文件已经有了，只需要上传镜像文件就行。 2、镜像文件的命名：huaweiar1k-5.170-V300R022C00SPC100 对应的yml文件名称：huaweiar1k.yml 前面的huaweiar1k必须相同，后面的-5.170-V300R022C00SPC100可以自定义设置 一般是intel架构的cpu，yml文件上传到/opt/unetlab/html/templates/intel 3、登录web界面，添加设备，已经上传过镜像的会显示蓝色字体，没有上传镜像的是灰色字体 至此，EVE-NG模拟器导入镜像操作完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/14587.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » EVE-NG模拟器导入镜像操作<p><a rel="bookmark" href="https://www.osyunwei.com/archives/14587.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/14587.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EVE-NG模拟器安装教程</title>
		<link>https://www.osyunwei.com/archives/14570.html</link>
		<comments>https://www.osyunwei.com/archives/14570.html#comments</comments>
		<pubDate>Wed, 25 Sep 2024 08:45:02 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[网络设备]]></category>
		<category><![CDATA[eve-ng]]></category>
		<category><![CDATA[模拟器]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=14570</guid>
		<description><![CDATA[EVE-NG介绍： 1、EVE-NG全称Emulated Virtual Environment - NextGeneration，是一个虚拟仿真平台，在它上面可以运行交换机、路由器、防火墙等大部分网络设备以及Windows、Linux、MacOS等操作系统。 2、EVE-NG的安装包是基于Ubuntu定制的一个操作系统镜像 3、EVE-NG可以安装在x86架构的物理机上，也可以安装在VMware Workstation Pro、ESXI等虚机环境中 4、EVE-NG的安装过程类似Ubuntu系统的安装 5、EVE-NG分社区版和专业版，专业版支持的功能更多，但是收费，一般日常实验使用免费的社区版完全足够 6、EVE-NG下载地址：https://www.eve-ng.net/index.php/download/ 我们选择Free EVE Community Edition社区版本 7、可供学习和参考的网站 https://eve-ng.cn/ https://www.emulatedlab.com/ EVE-NG安装： 我们使用ESXI来安装，安装过程和Ubuntu系统安装基本一致 需要注意的是： 1、在ESXI中开启硬件虚拟化 2、在ESXI中开启网络混杂模式，否则网络设备和物理机不通 3、具体安装过程如下 初始化登录账号密码：root/eve 需要修改密码 设置主机名 默认 设置静态ip地址为10.189.189.251 子网掩码为255.255.255.0 网关为10.189.189.1 设置主dns为8.8.8.8 设置从dns为8.8.4.4 默认即可 默认即可 系统登录 初始化：root/eve 修改后：root/123456 web界面登录 http://10.189.189.251/ 用户名和密码为：admin/eve 至此，EVE-NG模拟器安装教程完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/14570.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » EVE-NG模拟器安装教程<p><a rel="bookmark" href="https://www.osyunwei.com/archives/14570.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/14570.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>华为交换机基本配置案例</title>
		<link>https://www.osyunwei.com/archives/12238.html</link>
		<comments>https://www.osyunwei.com/archives/12238.html#comments</comments>
		<pubDate>Sun, 22 May 2022 08:02:14 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Switch]]></category>
		<category><![CDATA[交换机]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12238</guid>
		<description><![CDATA[1、初次登录交换机 使用Console通信电缆（产品随设备附带）连接交换机与PC。若PC无串口，需要使用USB接口转串口的转接线。 PC上打开终端仿真软件，新建连接，设置连接的接口以及通信参数。 连接的接口请根据实际情况进行选择。例如，在Windows系统中，可以通过在“设备管理器”中查看端口信息，选择连接的接口。 交换机上的通信参数： 传输速率  9600bit/s 流控方式  不进行流控 校验方式  不进行校验 停止位  1 数据位  8 1.1登录交换机，出现下面的界面（S7700系列交换机） Connecting to COM4... Connected. Login authentication Username:admin Password:admin@huawei.com Warning: The default password poses security risks. The password needs to be changed. Change now? [Y/N]: y Please enter old password:admin@huawei.com Please enter new password:Admin@huawei.com Please confirm new password:Admin@huawei.com The password has been changed successfully. Info: [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12238.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12238.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>华为企业网络仿真平台eNSP模拟器安装使用教程</title>
		<link>https://www.osyunwei.com/archives/12089.html</link>
		<comments>https://www.osyunwei.com/archives/12089.html#comments</comments>
		<pubDate>Sat, 30 Apr 2022 07:30:31 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[网络设备]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12089</guid>
		<description><![CDATA[阿里云盘链接：https://www.aliyundrive.com/s/q9AasxVArcR 提取码：a9c4 百度网盘链接：https://pan.baidu.com/s/1ZDL_wtZKkhxJuvvEyfxewQ 提取码：gvyy eNSP(Enterprise Network Simulation Platform)是由华为提供的可扩展的图形化操作的网络仿真工具平台，主要对企业网络路由器、交换机、防火墙进行软件仿真，借助这个模拟器，可以模拟网络架构。 安装eNSP前需要依次安装下面4个依赖组件，最后再安装eNSP 1、WinPcap_4_1_3 抓包工具的底层程序， 为wireshark 提供服务的 2、Wireshark-win64-3.0.0 抓包工具， 有图形化页面 ， 用来分析报文结构的 3、VirtualBox 虚拟机，设备就是在这里运行 4、Vlc-3.0.11-win64 一款视频播放器， 是做组播实验，播放视频用的 5、eNSP V100R003C00 Setup eNSP安装程序 注意： 1、所有软件都使用默认下一步安装，但是不要安装在中文路径下 2、Wireshark安装的时候特别要注意，检查“Npcap”的勾是否去掉，如果默认是选中状态，请一定要去掉，否则eNSP安装出错 3、Windows 7系统请安装VirtualBox-5.1.24-117012-Win版本 4、Windows 10、Windows 11系统请安装VirtualBox-5.2.44-139111-Win版本 eNSP安装完成后注册设备，打开eNSP-菜单-注册设备-选择右边列出的设备名称-注册，注册完成后，打开VirtualBox查看是否存在相关虚拟机，如果有说明注册成功。 如果需要模拟CE、CX、NE40、NE5000E、NE9000、USG6000V等第三方集成设备，还需要导入对应的镜像包。 USG6000V防火墙登录默认用户名、密码：admin/Admin@123 至此，华为企业网络仿真平台eNSP模拟器安装使用教程完成。 &#160;&#160;&#160;&#160;&#160;» 本文链接：https://www.osyunwei.com/archives/12089.html» 订阅本站：https://www.osyunwei.com/feed» 转载请注明来源：系统运维 » 华为企业网络仿真平台eNSP模拟器安装使用教程<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12089.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12089.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RouterOS 配置L2TP VPN服务器</title>
		<link>https://www.osyunwei.com/archives/8484.html</link>
		<comments>https://www.osyunwei.com/archives/8484.html#comments</comments>
		<pubDate>Thu, 27 Nov 2014 07:56:11 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[RouterOS]]></category>
		<category><![CDATA[L2TP]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=8484</guid>
		<description><![CDATA[说明： RouterOS服务器IP：172.31.101.80 RouterOS版本：RouterOS V6.15 需求： 在RouterOS服务器上配置PPTP VPN服务器，PPTP VPN客户端拨入网段为：172.31.101.60- 172.31.101.79 操作步骤： 一、登录RouterOS服务器 这里使用winbox登录RouterOS winbox下载：http://download2.mikrotik.com/routeros/winbox/3.0beta3/winbox.exe 如下图所示： 输入服务器IP、账号和密码 点Connect登录 登录成功后如下图所示： 二、建立客户端拨入网段地址池 IP-Pool 点+号 Name：l2tp-pool Addresses：172.31.101.60-172.31.101.79 点OK 三、配置L2TP VPN 1、PPP-Profiles 点+号 Name：l2tp-profile Local Address：172.31.101.80 Remote Address：l2tp-pool DNS Server：8.8.8.8 8.8.4.4 OK 2、PPP-Interface-L2TP Server 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 勾选 Enabled Default Profile：l2tp-profile OK 3、PPP-Interface 点+号，选择L2TP Server Binding Name：l2tp-in1 OK 四、创建客户端拨号用户 PPP-Secrets 点+号 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/8484.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/8484.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RouterOS 配置PPTP VPN服务器</title>
		<link>https://www.osyunwei.com/archives/8459.html</link>
		<comments>https://www.osyunwei.com/archives/8459.html#comments</comments>
		<pubDate>Thu, 27 Nov 2014 01:25:23 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[RouterOS]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=8459</guid>
		<description><![CDATA[说明： RouterOS服务器IP：172.31.101.80 RouterOS版本：RouterOS V6.15 需求： 在RouterOS服务器上配置PPTP VPN服务器，PPTP VPN客户端拨入网段为：172.31.101.60-172.31.101.79 操作步骤： 一、登录RouterOS服务器 这里使用winbox登录RouterOS winbox下载：http://download2.mikrotik.com/routeros/winbox/3.0beta3/winbox.exe 如下图所示： 输入服务器IP、账号和密码 点Connect登录 登录成功后如下图所示： 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链 二、建立客户端拨入网段地址池 IP-Pool 点+号 Name：pptp-pool Addresses：172.31.101.60-172.31.101.79 点OK 三、配置PPTP VPN 1、PPP-Profiles 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链 点+号 Name：pptp-profile Local Address：172.31.101.80 Remote Address：pptp-pool DNS Server：8.8.8.8 8.8.4.4 OK 2、PPP-Interface-PPTP Server 勾选 Enabled Default Profile：pptp-profile OK 3、PPP-Interface 点+号，选择PPTP Server Binding Name：pptp-in1 OK 四、创建客户端拨号用户 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/8459.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/8459.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RouterOS 5.16软路由安装图解教程</title>
		<link>https://www.osyunwei.com/archives/4037.html</link>
		<comments>https://www.osyunwei.com/archives/4037.html#comments</comments>
		<pubDate>Sat, 26 May 2012 05:10:36 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[RouterOS]]></category>
		<category><![CDATA[软路由]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=4037</guid>
		<description><![CDATA[说明：RouterOS是一种路由器操作系统，它可以安装到普通的个人电脑上面，替代硬件路由器 RouterOS版本：RouterOS 5.16 硬件要求： 1、支持多核CPU 2、内存最大支持到2G 3、硬盘支持IDE、SATA（硬盘必须接到主板的IDE0、SATA0接口） 4、安装RouterOS 5.16的电脑需要有两张网卡 下载地址：RouterOS 5.16 安装RouterOS 5.16 一、WinPE进入系统 通用PE工具箱下载：http://www.crsky.com/soft/15801.html 二、把下载好的RouterOS 5.16（IMG版）文件解压之后拷贝到U盘，再把U盘接到WinPE系统 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 三、双击RouterOS 5.16（IMG版）文件夹里面的install.bat 输入数字0（安装到硬盘，0代表硬盘） 然后输入y安装 正在安装 等待安装完成，取出winPE光盘，退出U盘 重启系统,进入登录界面 账号：admin 密码为空（默认安装之后没有设置登录密码） 登录之后出现下面的界面 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 按回车键 下面设置RouterOS网卡1（ether1）的IP地址 interface print   #查看网络接口 ip  add  #进入网络接口设置模式 add   address=192.168.21.133/24   interface=ether1    #设置网卡1（ether1）的IP地址 / ip  add print   #查看网络接口设置 四、使用winbox登录RouterOS RouterOS路由器管理工具winbox下载地址：http://download2.mikrotik.com/winbox.exe 设置局域网客户机 IP：192.168.21.253（最后一位：1-253，除过133都可以） 子网掩码：255.255.255.0 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/4037.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/4037.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>RouterOS 3.30软路由ADSL拨号上网设置</title>
		<link>https://www.osyunwei.com/archives/4018.html</link>
		<comments>https://www.osyunwei.com/archives/4018.html#comments</comments>
		<pubDate>Thu, 24 May 2012 14:41:34 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[RouterOS]]></category>
		<category><![CDATA[ADSL]]></category>
		<category><![CDATA[软路由]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=4018</guid>
		<description><![CDATA[说明： RouterOS版本：RouterOS 3.30 网卡1（ether1）：接外网ADSL拨号 拨号用户名：osyunwei 密码：123456 网卡2（ether2）：接内网 IP:192.168.177.254（内网网关地址） 子网掩码：255.255.255.0 实现目的：局域网客户机通过RouterOS软路由能够上网 附：网络拓扑图 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 RouterOS路由器管理工具winbox下载地址：http://download2.mikrotik.com/winbox.exe RouterOS 3.30软路由安装图解教程：http://www.osyunwei.com/archives/4000.html 以下操作在登录RouterOS控制台后进行 一、设置RouterOS登录密码 备注：默认安装之后，登录账户：admin密码为空 下面设置admin的登录密码为：123456 password old password： new password：123456  #输入密码 retype new password：123456  #再次输入密码 密码设置完成  二、配置网卡IP地址 interface print  #显示可用的网卡信息 会出现ether1  ether2等网卡信息 这里ether1代表网卡1，我们用来连接外网ADSL拨号 ether2代表网卡2，用来连接内网 ip address #设置网卡接口IP地址 add address=192.168.177.254/24  interface=ether2  #设置内网地址 /ip address print  #查看接口地址 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链接 三、使用winbox登录RouterOS [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/4018.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/4018.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
