<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>IP-Address &#8211; Webbanshee</title>
	<atom:link href="https://webbanshee.net/tag/ip-address/feed/" rel="self" type="application/rss+xml" />
	<link>https://webbanshee.net</link>
	<description>Your Exchange Server Blog</description>
	<lastBuildDate>Thu, 28 Apr 2022 07:36:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://webbanshee.net/wp-content/uploads/2017/01/WB_BL_RND-150x150.png</url>
	<title>IP-Address &#8211; Webbanshee</title>
	<link>https://webbanshee.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">122610384</site>	<item>
		<title>Add Secondary IP Address Windows Server</title>
		<link>https://webbanshee.net/add-ip-address-windows-server/</link>
					<comments>https://webbanshee.net/add-ip-address-windows-server/#respond</comments>
		
		<dc:creator><![CDATA[WebBanshee]]></dc:creator>
		<pubDate>Mon, 07 Dec 2020 11:22:19 +0000</pubDate>
				<category><![CDATA[Serverside]]></category>
		<category><![CDATA[2016]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[IP-Address]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[ServerCore]]></category>
		<guid isPermaLink="false">https://webbanshee.net/?p=3809</guid>

					<description><![CDATA[<style>.key{background:#444444;padding-left: 5px;padding-right: 5px;padding-top: 2px;padding-bottom: 2px;color:#fefefe;border-radius: 3px;font-size: 14px;}</style>
<p><a class="ex-link" href="https://webbanshee.net/add-ip-address-windows-server/"><img src="https://webbanshee.net/wp-content/uploads/2020/12/Add_Remove_IPaddress.svg"/><span class="exTeaser" style="width:70%;">Add or remove an IP address with PowerShell. Includes a script at the end of the post. Fell free to use.</span><br />
<span class="exText" style="width:70%;" >If you want to add a secondary IP Address without using the Change Adapter Options in the GUI ( especially on Windows Core servers ) you can achieve this in a simple way via PowerShell.<span style="font-size: 11px !Important; width: 10%; height: 5%; color: #993333; padding-left: 20px;">......read more</span></span></a></p>
<p>The post <a rel="nofollow" href="https://webbanshee.net/add-ip-address-windows-server/">Add Secondary IP Address Windows Server</a> appeared first on <a rel="nofollow" href="https://webbanshee.net">Webbanshee</a>.</p>
]]></description>
										<content:encoded><![CDATA[<style>.bckgr {background:#ccc;} .see {overflow-x:scroll!Important;overflow-y:hidden;white-space: nowrap;Background:#FDFDF4;border-left: 16px solid #7C98E2; border-top-left-radius:30px; padding-top:15px;padding-left:15px;padding-bottom:10px;scroll-behavior: smooth;}.MsoNormal {background:transparent!Important;} .code-bg {font-weight:bold; margin-top: -5px;} .BlueCopy:hover {opacity: 0.85;} h2 {font-weight: bold;text-decoration:none;font-size: 20px!Important;}h3 {font-weight: bold;text-decoration:none;font-size: 18px!Important;}h4 {font-weight: bold;text-decoration:none;font-size: 16px!Important;}.wp-image-2045,.wp-image-2051,.wp-image-2050,.wp-image-2049,.wp-image-2056, .wp-image-2055 {margin-top:2px!Important;margin-right:6px;} .wpe-button-blue {background: #1072C1!Important; border: none!Important;}.blue{background:#6666cc;padding-left: 5px;padding-right: 5px;padding-top: 2px;padding-bottom: 2px;color:#fefefe;border-radius: 3px;font-size: 14px;}</style>
<p style="text-align: justify;">If you want to add a secondary IP Address without using the Change Adapter Options in the GUI ( especially on Windows Core servers ) you could use <span class="blue">sconfig</span> or simply add the IP address with PowerShell.</p>
<p style="text-align: justify;">In my case, I wanted to add a secondary IP address to a certain interface on some Windows Server Core servers. Unfortunately, an Invalid Index error was thrown when I chose the appropriate interface under sconfig &#8211; Network Settings:</p>
<div class="wpe-box wpe-box-note3" style="margin-top: 50px;"><a href="https://webbanshee.net/wp-content/uploads/2020/12/Invalid_Index.png"><img loading="lazy" class="aligncenter size-full wp-image-3817" src="https://webbanshee.net/wp-content/uploads/2020/12/Invalid_Index.png" alt="Invalid Index Network Settings" width="623" height="130" srcset="https://webbanshee.net/wp-content/uploads/2020/12/Invalid_Index.png 623w, https://webbanshee.net/wp-content/uploads/2020/12/Invalid_Index-300x63.png 300w" sizes="(max-width: 623px) 100vw, 623px" /></a></div>
<p style="text-align: justify;">However, I faced this error a couple of months ago already when I wanted to <a class="wpe-button wpe-button-blue" href="https://webbanshee.net/disable-ipv6-on-server-core/" rel="noopener noreferrer">Disable IPv6</a> in my test lab.</p>
<p style="text-align: justify;">Because this time it was production servers I didn&#8217;t want to change any settings while adding secondary IP addresses to the servers. The only option was to add a secondary IP address via PowerShell.</p>
<p>&#8230; and here we go:</p>
<h2>Add Secondary IP Address to Network Interface:</h2>
<h3><img class="alignnone size-full wp-image-2045" src="https://webbanshee.net/wp-content/uploads/2019/01/round_1.svg" alt="1 -" />List Network Interfaces with name and Interface Index</h3>
<div class="wpe-box wpe-box-note3">
<p><strong>Get-NetAdapter</strong></p>
<p><a href="https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter.png"><img loading="lazy" class="aligncenter size-full wp-image-3820" src="https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter.png" alt="List Network Interfaces" width="588" height="102" srcset="https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter.png 588w, https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter-300x52.png 300w" sizes="(max-width: 588px) 100vw, 588px" /></a></p>
</div>
<h3><img class="alignnone size-full wp-image-2051" src="https://webbanshee.net/wp-content/uploads/2019/01/round_2.svg" alt="2 -" />Display existent IPs on chosen Network Interface</h3>
<div class="wpe-box wpe-box-note3">To list IPv4 and IPv6 IP addresses:<br />
<span style="font-weight: bold;">Get-NetAdapter -ifIndex</span><span style="font-weight: bold; color: #993333;">  ifIndex Number</span><span style="font-weight: bold;"> | Get-NetIPAddress | select IPAddress | ft</span><a href="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_All.png"><img loading="lazy" class="aligncenter size-full wp-image-3821" src="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_All.png" alt="List IPv4 and IPv6 addresses" width="889" height="90" srcset="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_All.png 889w, https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_All-300x30.png 300w, https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_All-768x78.png 768w" sizes="(max-width: 889px) 100vw, 889px" /></a>To display only IPv4 addresses:<br />
<span style="font-weight: bold;">Get-NetAdapter -ifIndex</span><span style="font-weight: bold; color: #993333;"> ifIndex Number</span><span style="font-weight: bold;"> | Get-NetIPAddress | where {$_.AddressFamily –eq “IPv4”} | select IPAddress</span><br />
<a href="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4.png"><img loading="lazy" class="aligncenter size-full wp-image-3828" src="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4.png" alt="List IPv4 addresses" width="899" height="82" srcset="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4.png 899w, https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4-300x27.png 300w, https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4-768x70.png 768w" sizes="(max-width: 899px) 100vw, 899px" /></a></p>
</div>
<h3><img class="alignnone size-full wp-image-2050" src="https://webbanshee.net/wp-content/uploads/2019/01/round_3.svg" alt="3 -" />Add new IP address</h3>
<div class="wpe-box wpe-box-note3"><span style="font-weight: bold;">New-NetIPAddress –IPAddress </span><span style="font-weight: bold; color: #993333;">&#8220;IpAddress goes here&#8221;</span><span style="font-weight: bold;"> –PrefixLength 24 –InterfaceIndex</span><span style="font-weight: bold; color: #993333;"> ifIndex Number</span><br />
<a href="https://webbanshee.net/wp-content/uploads/2020/12/Add_New_IP_Address.png"><img loading="lazy" class="aligncenter size-full wp-image-3819" src="https://webbanshee.net/wp-content/uploads/2020/12/Add_New_IP_Address.png" alt="Add secondary IP address" width="727" height="402" srcset="https://webbanshee.net/wp-content/uploads/2020/12/Add_New_IP_Address.png 727w, https://webbanshee.net/wp-content/uploads/2020/12/Add_New_IP_Address-300x166.png 300w" sizes="(max-width: 727px) 100vw, 727px" /></a><br />
<span style="margin-top: -10px;">The command adds the IP address to the ActiveStore and the Persistent Store.</span><br />
You can read more about the PolicyStore values <a href="https://docs.microsoft.com/en-us/powershell/module/nettcpip/new-netipaddress?view=win10-ps#:~:text=-PolicyStore">here</a>.</div>
<h3><img class="alignnone size-full wp-image-2050" src="https://webbanshee.net/wp-content/uploads/2019/01/round_4.svg" alt="4 -" />Verify that add a secondary IP address was successful</h3>
<div class="wpe-box wpe-box-note3"><span style="font-weight: bold;">Get-NetAdapter -ifIndex</span><span style="font-weight: bold; color: #993333;"> ifIndex Number</span><span style="font-weight: bold;"> | Get-NetIPAddress | where {$_.AddressFamily –eq “IPv4”} | select IPAddress</span><br />
<a href="https://webbanshee.net/wp-content/uploads/2020/12/IPv4_Address_added.png"><img loading="lazy" class="aligncenter size-full wp-image-3818" src="https://webbanshee.net/wp-content/uploads/2020/12/IPv4_Address_added.png" alt="Add Secondary IP Address done!" width="898" height="93" srcset="https://webbanshee.net/wp-content/uploads/2020/12/IPv4_Address_added.png 898w, https://webbanshee.net/wp-content/uploads/2020/12/IPv4_Address_added-300x31.png 300w, https://webbanshee.net/wp-content/uploads/2020/12/IPv4_Address_added-768x80.png 768w" sizes="(max-width: 898px) 100vw, 898px" /></a></div>
<p>Thats all. You don&#8217;t need to specify a default Gateway since this has most likely be done already with the initial IP address.</p>
<h2>Remove IP Address from Network Interface:</h2>
<h3><img class="alignnone size-full wp-image-2045" src="https://webbanshee.net/wp-content/uploads/2019/01/round_1.svg" alt="1 -" />List Network Interfaces with name and Interface Index</h3>
<div class="wpe-box wpe-box-note3">
<p><strong>Get-NetAdapter</strong></p>
<p><a href="https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter.png"><img loading="lazy" class="aligncenter size-full wp-image-3820" src="https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter.png" alt="Add Secondary IP Address list" width="588" height="102" srcset="https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter.png 588w, https://webbanshee.net/wp-content/uploads/2020/12/Get-NetAdapter-300x52.png 300w" sizes="(max-width: 588px) 100vw, 588px" /></a></p>
</div>
<h3><img class="alignnone size-full wp-image-2051" src="https://webbanshee.net/wp-content/uploads/2019/01/round_2.svg" alt="2 -" />Display existent IP addresses that can be removed on chosen Network Interface</h3>
<div class="wpe-box wpe-box-note3">We focus here only on IPv4 addresses. See point <img class="alignnone size-full wp-image-2051" style="padding-left: 5px!Important;" src="https://webbanshee.net/wp-content/uploads/2019/01/round_2.svg" alt="2 -" /> above to display IPv6 as well.<br />
<span style="font-weight: bold;">Get-NetAdapter -ifIndex</span><span style="font-weight: bold; color: #993333;"> ifIndex Number</span><span style="font-weight: bold;"> | Get-NetIPAddress | where {$_.AddressFamily –eq “IPv4”} | select IPAddress</span><br />
<a href="https://webbanshee.net/wp-content/uploads/2020/12/IP_address_to_remove.png"><img loading="lazy" class="aligncenter size-full wp-image-3835" src="https://webbanshee.net/wp-content/uploads/2020/12/IP_address_to_remove.png" alt="add secondary IP address remove" width="904" height="90" srcset="https://webbanshee.net/wp-content/uploads/2020/12/IP_address_to_remove.png 904w, https://webbanshee.net/wp-content/uploads/2020/12/IP_address_to_remove-300x30.png 300w, https://webbanshee.net/wp-content/uploads/2020/12/IP_address_to_remove-768x76.png 768w" sizes="(max-width: 904px) 100vw, 904px" /></a><br />
<strong>Copy IP address to remove from the output.</strong></div>
<h3><img class="alignnone size-full wp-image-2050" src="https://webbanshee.net/wp-content/uploads/2019/01/round_3.svg" alt="3 -" />Remove IP address</h3>
<div class="wpe-box wpe-box-note3">Insert copied IP address in the command below:<br />
<span style="font-weight: bold;">Get-NetIPAddress –IPAddress </span><span style="font-weight: bold; color: #993333;">IPAddressToRemove</span><span style="font-weight: bold;"> –InterfaceIndex</span><span style="font-weight: bold; color: #993333;"> ifIndex Number </span><span style="font-weight: bold;">| Remove-NetIPAddress</span>You will need to confirm it for both PolicyStores.<br />
Otherwise you could use the command with <strong>-Confirm:$false</strong></p>
</div>
<h3><img class="alignnone size-full wp-image-2050" src="https://webbanshee.net/wp-content/uploads/2019/01/round_4.svg" alt="4 -" />add secondary IP address verify</h3>
<div class="wpe-box wpe-box-note3"><span style="font-weight: bold;">Get-NetAdapter -ifIndex</span><span style="font-weight: bold; color: #993333;"> ifIndex Number</span><span style="font-weight: bold;"> | Get-NetIPAddress | where {$_.AddressFamily –eq “IPv4”} | select IPAddress</span><br />
<a href="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4.png"><img loading="lazy" class="aligncenter size-full wp-image-3828" src="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4.png" alt="Add secondary IP address IPv4 addresses" width="899" height="82" srcset="https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4.png 899w, https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4-300x27.png 300w, https://webbanshee.net/wp-content/uploads/2020/12/IP_Address_IPv4-768x70.png 768w" sizes="(max-width: 899px) 100vw, 899px" /></a></div>
<p>I have compiled the above steps in a script to make it more convenient:</p>
<p><a class="wpe-button wpe-button-blue" href="https://webbanshee.net/powershell-script-addremove-ip/" rel="noopener noreferrer">Script to Add/Remove IP Address</a></p>
<p>The post <a rel="nofollow" href="https://webbanshee.net/add-ip-address-windows-server/">Add Secondary IP Address Windows Server</a> appeared first on <a rel="nofollow" href="https://webbanshee.net">Webbanshee</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://webbanshee.net/add-ip-address-windows-server/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">3809</post-id>	</item>
		<item>
		<title>Disable IPv6 on Server Core with Powershell</title>
		<link>https://webbanshee.net/disable-ipv6-on-server-core/</link>
					<comments>https://webbanshee.net/disable-ipv6-on-server-core/#respond</comments>
		
		<dc:creator><![CDATA[WebBanshee]]></dc:creator>
		<pubDate>Sat, 04 May 2019 15:49:36 +0000</pubDate>
				<category><![CDATA[Serverside]]></category>
		<category><![CDATA[2019]]></category>
		<category><![CDATA[IP-Address]]></category>
		<category><![CDATA[Powershell]]></category>
		<category><![CDATA[ServerCore]]></category>
		<guid isPermaLink="false">https://webbanshee.net/?p=2797</guid>

					<description><![CDATA[<p><a class="ex-link" href="https://webbanshee.net/disable-ipv6-on-server-core/"><img src="https://webbanshee.net/wp-content/uploads/2019/05/DisableIPV6OnServerCore.svg" /><span class="exTeaser">Disable IPv6 on Server Core through Powershell and deal with the Invalid Index state when opening Network Settings with sconfig.</span><br />
<span class="exText">When I was building my new test lab I wanted all servers to communicate and respond to ping only in IPv4<span style="font-size: 11px !Important; width: 10%; height: 5%; color: #993333; padding-left: 20px;">......read more</span></span></a></p>
<p>The post <a rel="nofollow" href="https://webbanshee.net/disable-ipv6-on-server-core/">Disable IPv6 on Server Core with Powershell</a> appeared first on <a rel="nofollow" href="https://webbanshee.net">Webbanshee</a>.</p>
]]></description>
										<content:encoded><![CDATA[<style type="text/css">h2 {font-weight: bold;text-decoration:none;font-size: 20px!Important;}h3 {font-weight: bold;text-decoration:none;font-size: 18px!Important;} .wpe-button-blue {background: #1072C1!Important; border: none!Important;}</style>
<p style="text-align: justify;">For whatever reason you may need to disable IPv6 on Server Core or any other server sometimes.</p>
<p style="text-align: justify;">When I was building my new test lab I wanted all servers to communicate and respond to ping only in IPv4. So I started to disable IPv6 on  Server Core via Powershell.</p>
<p>&nbsp;</p>
<p style="text-align: justify;">After this the server responded to ping with its IPv4 address but  <strong>SCONFIG  &gt; Network Settings &gt;  Network Adapter Settings showed an Invalid Index.</strong></p>
<p style="text-align: justify;">The solution for me was to enable IPv6 on Server Core again. The server still responds in IPv4 and the Network Adapter Settings are available again.</p>
<p>&nbsp;<br />
Here are the steps &#8230;</p>
<h2>Disable IPV6 on Server Core via Powershell:</h2>
<div class="wpe-box wpe-box-note">
<p>Switch to Powershell by typing <span style="color: #993333;">powershell</span></p>
</div>
<h2>Check the current status of the Adapter Bindings:</h2>
<div class="wpe-box wpe-box-note">
<p>Get-NetAdapterBinding -ComponentID <span style="color: #993333;">&#8216;ms_tcpip6&#8217;</span></p>
<p><a href="https://webbanshee.net/wp-content/uploads/2019/04/IPV6True.png"><img loading="lazy" class="aligncenter wp-image-2706 size-full" src="https://webbanshee.net/wp-content/uploads/2019/04/IPV6True.png" alt="Get-NetAdapterBinding" width="901" height="93" srcset="https://webbanshee.net/wp-content/uploads/2019/04/IPV6True.png 901w, https://webbanshee.net/wp-content/uploads/2019/04/IPV6True-300x31.png 300w, https://webbanshee.net/wp-content/uploads/2019/04/IPV6True-768x79.png 768w" sizes="(max-width: 901px) 100vw, 901px" /></a></p>
</div>
<h2>Disable IPV6:</h2>
<div class="wpe-box wpe-box-note">
<p>Get-NetAdapterBinding -ComponentID <span style="color: #993333;">&#8216;ms_tcpip6&#8217;</span> | Disable-NetAdapterBinding -ComponentID <span style="color: #993333;">&#8216;ms_tcpip6&#8217;</span> -PassThru</p>
<p><a href="https://webbanshee.net/wp-content/uploads/2019/04/IPV6False.png"><img loading="lazy" class="aligncenter wp-image-2708 size-full" src="https://webbanshee.net/wp-content/uploads/2019/04/IPV6False.png" alt="Disable-NetAdapterBinding" width="961" height="107" srcset="https://webbanshee.net/wp-content/uploads/2019/04/IPV6False.png 961w, https://webbanshee.net/wp-content/uploads/2019/04/IPV6False-300x33.png 300w, https://webbanshee.net/wp-content/uploads/2019/04/IPV6False-768x86.png 768w" sizes="(max-width: 961px) 100vw, 961px" /></a></p>
</div>
<h2>It is possible that  Network Settings > Network Adapter Settings &gt;with SCONFIG will show an invalid index after this:</h2>
<div class="wpe-box wpe-box-note">
<p><a href="https://webbanshee.net/wp-content/uploads/2019/04/InvalidIndexNWSettings.png"><img loading="lazy" class="aligncenter wp-image-2709 size-full" src="https://webbanshee.net/wp-content/uploads/2019/04/InvalidIndexNWSettings.png" alt="Network Adapter Settings Invalid Index" width="616" height="84" srcset="https://webbanshee.net/wp-content/uploads/2019/04/InvalidIndexNWSettings.png 616w, https://webbanshee.net/wp-content/uploads/2019/04/InvalidIndexNWSettings-300x41.png 300w" sizes="(max-width: 616px) 100vw, 616px" /></a></p>
</div>
<h2>One answer from a technet forum goes as follows:</h2>
<p>( sorry, I just copied the text but do not have the referencing link anymore )</p>
<div class="wpe-box wpe-box-note">
<p style="text-align: justify;"><em>Based on my research, this is a known issue when IPV6 is disabled, we first need IPV6 enabled when configuring an IP address using SCONFIG. Once the IP Address is assigned, you can disable IPV6 afterwords.</em></p>
</div>
<p style="text-align: justify;">This was what did not work for me <img src="https://s.w.org/images/core/emoji/13.1.0/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" />  After the IPv4 address was assigned and IPv6 was disabled the server was reachable and responded but the Network Adapter Settings still came with an Invalid Index.<br />
So I enabled IPv6 again and left it this way. Everything works fine until now, the server responds with its IPv4 address.</p>
<p>Enjoy the spring!</p>
<p>&nbsp;<br />
<strong>Add Remove IP addresses despite the Invalid Index error:</strong><br />
<a class="wpe-button wpe-button-blue" style="margin-top:10px;" href="https://webbanshee.net/add-ip-address-windows-server/" rel="noopener noreferrer">Add IP Address Windows Server</a> </p>
<p>The post <a rel="nofollow" href="https://webbanshee.net/disable-ipv6-on-server-core/">Disable IPv6 on Server Core with Powershell</a> appeared first on <a rel="nofollow" href="https://webbanshee.net">Webbanshee</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://webbanshee.net/disable-ipv6-on-server-core/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">2797</post-id>	</item>
	</channel>
</rss>
