您的位置:首页 > 其它

IPv6網絡開發范例

2008-04-14 12:57 148 查看
*.下载:微软IPv6技术白皮书

*.下述代码是列出所有的单播IPv6地址.
private void DisplayAllAddresses()
{
NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces();
int i=0;
foreach (NetworkInterface adapter in adapters)
{

IPInterfaceProperties adapterProperties = adapter.GetIPProperties();
UnicastIPAddressInformationCollection allAddress =
adapterProperties.UnicastAddresses;
if (allAddress.Count > 0)
{
textBox2.Text += "interface "+i+ "description:\n\t "+adapter.Description+ "\n ";
i++;
foreach (UnicastIPAddressInformation addr in allAddress)
{
if (addr.Address.AddressFamily ==AddressFamily.InterNetworkV6)
ipListComb.Items.Add(addr.Address);
}
}
}
}

*.判断输入的字符串是否是合法的IPV6 地址
public static bool IsIPV6(string input)
{
string pattern = "";
string temp = input;
string[] strs = temp.Split(':');
if(strs.Length > 8)
{
return false;
}
int count = MetarnetRegex.GetStringCount(input,"::");
if(count>1)
{
return false;
}
else if(count == 0)
{
pattern = @"^([\da-f]{1,4}:){7}[\da-f]{1,4}$";

Regex regex = new Regex(pattern);
return regex.IsMatch(input);
}
else
{
pattern = @"^([\da-f]{1,4}:){0,5}::([\da-f]{1,4}:){0,5}[\da-f]{1,4}$";
Regex regex1 = new Regex(pattern);
return regex1.IsMatch(input);
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: