Mengatasi error : ipx, ncp, ipx_configure, ncpmount di linux
Walaupun Novell Netware sudah jarang di pakai, tapi terkadang kita butuhkan juga
solusi cepat untuk mengakses Server-Server Novell Netware di linux [centos 4.7] dengan cara :
a. download ipxutils-2.2.0.18-6.i386.rpm & ncpfs-2.2.0.18-6.i386.rpm
b. install
# rpm -ivh ipxutils-2.2.0.18-6.i386.rpm
# rpm -ivh ncpfs-2.2.0.18-6.i386.rpm
c. test …..
# ipx_configure –auto_interface=on –auto_primary=on
# ncpmount -S servername -U username -P password /mnt/servername -g 738 -f 0660
==============================================================================
jika
error 1 :
ipx_configure –auto_interface=on –auto_primary=on
error :
Socket:Address family not supported by protocol.
error 2 :
ncpmount -S servername -U username -P password /mnt/servername -g 738 -f 0660
error :
ncpmount: Cannot assign requested addresss when trying to find [servername]
solusi :
a. upgrade kernel agar support protocol ipx, dengan download rpm kernel-2.6.9-78.0.17.plus.c4.i686.rpm
b. periksa apakah support ipx ?
# rpm -qlip kernel-2.6.9-78.0.17.plus.c4.i686.rpm | grep ipx
warning: kernel-2.6.9-78.0.17.plus.c4.i686.rpm: V3 DSA signature: NOKEY, key ID 443e1821
/lib/modules/2.6.9-78.0.17.plus.c4/kernel/net/ipx
/lib/modules/2.6.9-78.0.17.plus.c4/kernel/net/ipx/ipx.ko
c. install
# rpm -ivh kernel-2.6.9-78.0.17.plus.c4.i686.rpm
d. lihat grub, kernel baru ada di urutan 0, default bisa diedit agar default 0
[root@linux ubs]# cat /boot/grub/grub.conf
default=1
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title CentOS (2.6.9-78.0.17.plus.c4)
root (hd0,0)
kernel /vmlinuz-2.6.9-78.0.17.plus.c4 ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.9-78.0.17.plus.c4.img
title CentOS (2.6.9-78.ELsmp)
root (hd0,0)
kernel /vmlinuz-2.6.9-78.ELsmp ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.9-78.ELsmp.img
title CentOS-up (2.6.9-78.EL)
root (hd0,0)
kernel /vmlinuz-2.6.9-78.EL ro root=LABEL=/ rhgb quiet
initrd /initrd-2.6.9-78.EL.img
e. booting dengan kernel baru (2.6.9-78.0.17.plus.c4)
f. test ………….
# ipx_configure –auto_interface=on –auto_primary=on
(delay 5-10 detik)
# ncpmount -S servername -U username -P password /mnt/servername -g 738 -f 0660