1 solaris基础和常用知识( 五 )


tar -cvf /dev/rmt/0 *
命令将当前目录下的所有文件(包括各级子目录)都打包到磁带上 。查看tar文件的内
容:tar tvf 目标文件名/设备名 , 例如:
tar -tvf backup.tar
tar -tvf /dev/rmt/0
将tar文件中的内容恢复到指定目录中去:tar xvf 目标文件名/设备名 [目录名] , 例
如:
tar -xvf backup.tar /home
tar -xvf /dev/rmt/0 /home
如果不指定目录名则表示当前目录 。

19. Q: 如何在Soraris下面安装ATM网卡?
A: 网卡型号:FORE PCA-200EUX/OC3
操作系统:Solaris 2.7
工作站:SUN Ultra60

一、硬件安装
1、工作站关电后 , 将网卡妥善安装在一个PCI插槽中;
2、工作站上电 , 按STOP and A中断boot process , 到ok提示符;
3、输入命令show-devs , 显示系统配置 , FORE网卡的device-pathname应出现在
配置列表中 , 形式可能如下:
/pci@1f,2000/FORE,PCA-200E@2
4、设备提供光口自环测试(media loopback)和内部自环测试(internal loopback) ,
供检查设备及安装是否完好 。根据经验用内部自环测试即可 , 方法:
输入命令 test /pci@1f,2000/FORE,PCA-200E@2
待出现:pass 0 说明硬件及安装都正确;
5、输入boot命令 , 启动系统 。
二、软件安装
1、软件安装需要root权限;
2、网卡支撑软件一般是一个.tar文件提供 , 解开后在其目录下有8个子目录 , 分
别为:
FORECore ForeThought ATM Core Software
FOREDrv ForeThought ATM Card Drivers
FORESpans ForeThought SPANS Signalling Software
FOREUni ForeThought UNI Signalling Software
FOREclip ForeThought Classical IP Software
FOREip ForeThought FORE IP Software
FOREmpoa ForeThought MPOA / LAN Emulation Software
FORExti ForeThought XTI Application Programming Interface
3、例如.tar文件解开后在/home/FORE下 , 则该目录下就有上述8个子目录 , 我们要
用的程序在FOREDrv、FOREip下 , 但各个模块之间有一定的依赖关系 , 需要安装的模块
有6个: FORECore、FORESpans、FOREDrv、FOREip、FOREUni、FOREclip 。安装过程:

> pkgadd -d /home/FORE
The following packages are available:
1 FORECore ForeThought ATM Core Software
.........(sparc) 5.1
2 FOREDrv ForeThought ATM Card Drivers
.........(sparc) 5.1
3 FORESpans ForeThought SPANS Signalling Software
.........(sparc) 5.1
4 FOREUni ForeThought UNI Signalling Software
.........(sparc) 5.1
5 FOREclip ForeThought Classical IP Software
.........(sparc) 5.1
6 FOREip ForeThought FORE IP Software
.........(sparc) 5.1
7 FOREmpoa ForeThought MPOA / LAN Emulation Software
.........(sparc) 5.1
8 FORExti ForeThought XTI Application Programming Interface

Select package(s) you wish to process (or "all" to process all packages).
(default: all) [?,??,q]:
选择要安装的模块 , 根据提示安装 。
4、安装后的软件在/opt/FOREatm /bin (使用的配置命令所在目录)
/conf
/examples
/include
/lib
/man
三、网卡配置
1、网络接口名配置
>configure_atm
选择配置ip模块 , 得到一个ip interface名 , 默认为fa0 。重启工作站 , 可以看到在
/dev下有fa0接口 , 而网卡的设备名为fatm0 。
2、>adinfo fatm0 可查询设备硬件信息
>adconfig fatm0 可进行设备配置
>adstat fatm0 可查询设备状态
这三个命令较少用到 。
3、接口ip地址配置
ifconfig fa0 netmask broadcast up
4、IPOA配置
atmarp -s hostname device vpi vci aal encapsulation(outgoing PVC配置)
atmarp -l device vpi vci aal encapsulation (incoming PVC配置)
例:分配给工作站的pvc为 vpi 0 vci 150
工作站的IPOA地址为200.200.200.101
MUSA设备的IPOA地址为201.200.200.100
AAL类型为5
encapsulation 为llc_routed
>atmarp -s 201.200.200.100 fa0 0 150 5 llc_routed

推荐阅读