<?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>一键IP设置 &#8211; 壹资源网</title>
	<atom:link href="https://www.iezyw.com/html/tag/%e4%b8%80%e9%94%aeip%e8%ae%be%e7%bd%ae/feed" rel="self" type="application/rss+xml" />
	<link>https://www.iezyw.com</link>
	<description>一个降低试错成本的网站！</description>
	<lastBuildDate>Tue, 16 Apr 2024 03:51:45 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.iezyw.com/wp-content/uploads/2026/01/cropped-logo-5-32x32.png</url>
	<title>一键IP设置 &#8211; 壹资源网</title>
	<link>https://www.iezyw.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>分享一个多ip切换批处理脚本,一键切换本机IP地址</title>
		<link>https://www.iezyw.com/html/20248507.html</link>
		
		<dc:creator><![CDATA[壹资源网]]></dc:creator>
		<pubDate>Tue, 16 Apr 2024 03:49:06 +0000</pubDate>
				<category><![CDATA[精品软件]]></category>
		<category><![CDATA[IP切换]]></category>
		<category><![CDATA[一键IP设置]]></category>
		<category><![CDATA[局域网IP设置]]></category>
		<guid isPermaLink="false">https://www.iezyw.com/?p=8507</guid>

					<description><![CDATA[注： 1、文件保存为.bat运行。 2、如果显示中文乱码，改下文件编码就行，编码：ANSI @echo off [&#8230;]]]></description>
										<content:encoded><![CDATA[<div>注：<br />
1、文件保存为.bat运行。<br />
2、如果显示中文乱码，改下文件编码就行，编码：ANSI</div>
<div></div>
<pre>@echo off
REM 定义IP信息二维数组，有多少个ip就定义多少组，下面用的是Tab分隔符
setlocal enabledelayedexpansion
set IPs[1]=DHCP
set IPs[2]=192.168.1.22        255.255.255.0        192.168.1.1
set IPs[3]=192.168.10.22        255.255.255.0        192.168.10.1
set IPs[4]=192.168.31.22        255.255.255.0        192.168.31.1
REM 计算IP个数，最大支持99个ip
set IPsCount=0
for /l %%i in (1,1,99) do (
    if defined IPs[%%i] (
        set /a IPsCount+=1
    )
)
REM 选择要切换的IP组
:input
cls
echo 请选择需要切换的IP组：
for /l %%i in (1,1,%IPsCount%) do (
    echo %%i. IP组%%i: !IPs[%%i]!
)
set /p selection=输入组号（1-%IPsCount%）：
if "%selection%" geq "1" if "%selection%" leq "%IPsCount%" (
    set ipInfo=!IPs[%selection%]!
) else (
    echo 无效的组号，请重新输入！
    timeout /t 3 &gt;nul
    goto input
)

REM 解析IP信息
for /f "tokens=1-3" %%a in ("%ipInfo%") do (
    set addr=%%a
    set mask=%%b
    set gateway=%%c
)
REM 判断为 DHCP 模式
REM 判断是否为DHCP，是则设置为DHCP模式，否则设置静态IP
if /I "%addr%"=="DHCP" (
    netsh interface ip set address name="WLAN" source=dhcp
    echo 已切换到 DHCP 模式
) else (
    REM 设置静态 IP 地址
    netsh interface ip set address name="WLAN" source=static addr=!addr! mask=!mask! gateway=!gateway! gwmetric=0
    echo 设置静态 IP 地址完成。
)
REM 刷新DNS缓存
ipconfig /flushdns
echo IP信息设置完成。
pause</pre>
<div></div>
<div></div>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>局域网IP地址一键切换工具</title>
		<link>https://www.iezyw.com/html/20248505.html</link>
		
		<dc:creator><![CDATA[壹资源网]]></dc:creator>
		<pubDate>Tue, 16 Apr 2024 03:35:22 +0000</pubDate>
				<category><![CDATA[精品软件]]></category>
		<category><![CDATA[IP转换]]></category>
		<category><![CDATA[一键IP设置]]></category>
		<category><![CDATA[局域网IP]]></category>
		<category><![CDATA[手动设置IP]]></category>
		<guid isPermaLink="false">https://www.iezyw.com/?p=8505</guid>

					<description><![CDATA[此小工具的开发初衷，源于在使用笔记本电脑时频繁遇到热点与办公室WiFi切换场景，手动设置IP地址颇为繁琐。为化 [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>此小工具的开发初衷，源于在使用笔记本电脑时频繁遇到热点与办公室WiFi切换场景，手动设置IP地址颇为繁琐。为化解这一困扰，我们特别创建了这款工具，其核心功能包括便捷获取当前网卡信息，旨在简化网络配置过程，提升用户操作体验。请注意，该工具已不再支持Windows XP系统。</p>
<p><span style="font-size: large;"><strong>重量：</strong> <span style="color: #ff0000;">&#8220;</span></span><span style="font-size: large;"><span style="color: #ff0000;">含金为零&#8211;为简而生&#8221;</span></span></p>
<p><span style="font-size: large;"><strong>食用方法：</strong> </span><span style="font-size: large;">右键选择“以管理员身份运行(A)”。</span></p>
<p><strong><span style="font-size: large;">软件截图：</span></strong></p>
<p><img fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-8506" title="121346fr0xyj6fxyjzkf40" src="https://www.iezyw.com/wp-content/uploads/2024/04/121346fr0xyj6fxyjzkf40.gif" alt="121346fr0xyj6fxyjzkf40" width="456" height="333" /></p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
