IP V4 和 IP V6 初识

IP V4    是互联网协议的第四版

    地址长度为32位,4字节,用十进制表示

    格式为:A.B.C.D

    最大的问题在于网络地址资源有限,严重制约了互联网的应用和发展

IP V6    是互联网协议的IP V4的下一代协议

    地址长度为128位,16字节,用8个16位的无符号整数表示,每个整数用4个十六进制表示

    格式为xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx

    (冒分十六进制表示法/0位压缩表示法/内嵌IP V4表示法)

    更简单的头信息,能够使路由器提供更有效率的路由转发

  (本文内容只是IP V4和IP V6的简单对比,想获得更深入的了解需查看更系统的教程)

时间: 2024-10-29 19:12:03

IP V4 和 IP V6 初识的相关文章

java使用正则表达式验证IP V4、 IP V6

package cn.outofmemory.snippets.core; import java.util.regex.Pattern; /** * A collection of utilities relating to InetAddresses. */ public class InetAddressUtils { public static void main(String[] args){ String addr="192.168.1.2"; System.out.pri

IP V4地址分类

IP V4地址 共分为五类: A类地址范围:1.0.0.1---126.255.255.254 B类地址范围:128.0.0.1---191.255.255.254 C类地址范围:192.0.0.1---223.255.255.254 D类地址范围:224.0.0.1---239.255.255.254 E类地址范围:240.0.0.1---255.255.255.254

[Swift]LeetCode468. 验证IP地址 | Validate IP Address

Write a function to check whether an input string is a valid IPv4 address or IPv6 address or neither. IPv4 addresses are canonically represented in dot-decimal notation, which consists of four decimal numbers, each ranging from 0 to 255, separated by

页面跳转带参数ip接收后ip参数被修改

1.某些情况下,页面请求带有ip参数,但是接收到ip参数时ip已经被修改,目前已在微信内置浏览器发现,chrome浏览器发现 例如请求链接地址:如下 http://www.example.com/url?expire_time=24h&extend_params=extend_params&extra_common_param=extParam_platform=1&fee=100&ip=111.206.125.33&notify_url=xxx 2.接收到后 ja

ifconfig、route、ip route、ip addr、 ip link 用法

网络管理是一个复杂而庞大的体系,博主最近刚好学了一点关于网络的知识,就跟大家分享一下,如何管理网卡.配置及查看ip地址和路由表.主要通过以下几个命令来演示一下. 一.ifconfig 1)配置地址: 比如修改eth0网卡的ip为192.168.174.100,子网掩码为255.255.255.0 ifconfig eth0 192.168.174.100/24 使用ifconfig修改ip会直接在内存中生效,重启系统或者重启network服务就丢失. 重启服务:Centos6:service n

Linux防火墙:iptables禁IP与解封IP常用命令

在Linux下,使用ipteables来维护IP规则表.要封停或者是解封IP,其实就是在IP规则表中对入站部分的规则进行添加操作. 要封停一个IP,使用下面这条命令: iptables -I INPUT -s ***.***.***.*** -j DROP 要解封一个IP,使用下面这条命令: iptables -D INPUT -s ***.***.***.*** -j DROP 参数-I是表示Insert(添加),-D表示Delete(删除).后面跟的是规则,INPUT表示入站,***.***

使用新浪IP库获取IP详细地址

<?php class Tool{ /** * 获取IP的归属地( 新浪IP库 ) * * @param $ip String IP地址:112.65.102.16 * @return Array */ static public function getIpCity($ip) { $ip = preg_replace("/\s/","",preg_replace("/\r\n/","",$ip)); $link = &

ip routing&no ip routing

ip routing--------查路由表, 如果ping的目的在RT中没有,不发出任何包(arp也不会发出)?? 如果RT中存在,则arp??下一跳,相当于no ip routing+配置网关 no ip routing----不查路由表? ?? ?? ?? ?不配置网关---arp-catch中存在很多条目(相当于static指出接口)? ?? ?? ?? ?配置网关--则会arp网关一次,有一个条目 ip routing&no ip routing

c#中获取服务器IP,客户端IP以及Request.ServerVariables详细说明

客户端ip: Request.ServerVariables.Get("Remote_Addr").ToString(); 客户端主机名: Request.ServerVariables.Get("Remote_Host").ToString(); 客户端浏览器IE: Request.Browser.Browser; 客户端浏览器 版本号: Request.Browser.MajorVersion;// 客户端操作系统: Request.Browser.Platfo