1、概述
作用:用于取得局域网或Internet环境中的主机名和IP地址.
2、包的组成
1)、get_host_name
作用:用于取得指定IP地址所对应的主机名
语法:utl_inaddr.get_host_name(ip in varchr2 default null) return varchar2;
其中ip指定tcp/ip地址
例子:select utl_inaddr.get_host_name('127.0.0.1') hostname from dual;
2)、get_host_address
作用:用于取得指定主机所对应的ip地址
语法:utl_inaddr.get_host_address(host in varchar2 default null) return varchar2;
其中host指定主机名
例子:select utl_inaddr.get_host_address('liutao') ip from dual;