LINUX.ORG.RU

Не монтируется nfs по ипу отличному от 127.0.0.1


0

0

Юзается джента (если чем поможет).
Вообщем лажа какая то, если указать 127.0.0.1 то монтирование nfs 
возможно, однако по другому ИПу принадлежащему тому же компу (это от 
вмвари) подмонитровать не получается :( Пытался понять что делать
и вот что получил:

root@cyclon / # rpcinfo -p 192.168.147.1 <--- вот тут трабла
No remote programs registered.
root@cyclon / # rpcinfo -p 127.0.0.1
   program vers proto   port
    100000    2   tcp    111  portmapper
    100000    2   udp    111  portmapper
    100024    1   udp  41736  status
    100024    1   tcp  41736  status
    100003    2   udp   2049  nfs
    100003    3   udp   2049  nfs
    100003    4   udp   2049  nfs
    100003    2   tcp   2049  nfs
    100003    3   tcp   2049  nfs
    100003    4   tcp   2049  nfs
    100005    1   udp  32767  mountd
    100005    1   tcp  32767  mountd
    100005    2   udp  32767  mountd
    100005    2   tcp  32767  mountd
    100005    3   udp  32767  mountd
    100005    3   tcp  32767  mountd
root@cyclon / # iptables -L | grep 192.168
ACCEPT     udp  --  192.168.0.0/16       anywhere            multiport ports nfs,sunrpc,41736,33382,32767
ACCEPT     tcp  --  192.168.0.0/16       anywhere            multiport ports nfs,sunrpc,41736,33382,32767
root@cyclon / # cat /etc/services | grep 2049
nfs             2049/tcp                        # Network File System
nfs             2049/udp
root@cyclon / # cat /etc/services | grep 111
sunrpc          111/tcp         portmapper      # SUN Remote Procedure Call
sunrpc          111/udp         portmapper
root@cyclon / # ps -A | grep rp
30505 ?        00:00:00 rpc.idmapd
30512 ?        00:00:00 rpc.statd
30539 ?        00:00:00 rpc.mountd
root@cyclon / # ps -A | grep nfs
30523 ?        00:00:00 nfsd4
30526 ?        00:00:00 nfsd
30524 ?        00:00:00 nfsd
30525 ?        00:00:00 nfsd
30527 ?        00:00:00 nfsd
30528 ?        00:00:00 nfsd
30529 ?        00:00:00 nfsd
30530 ?        00:00:00 nfsd
30531 ?        00:00:00 nfsd
root@cyclon / # ps -A | grep mount
30539 ?        00:00:00 rpc.mountd

Как видно, он просто не может увидеть что либо относящиеся к нфс.
Что делать???

Пы.Сы сижу под рутом только что бы править конфиги :)

Заранее спасибо!!!
★★★★★

А в /etc/exports что? Если стоит TCP wrapper посмотри что в /etc/hosts.{allow,deny} И когда правила iptables показываешь ставь -v и где эти правила, после каких, кто знает что там у тебя ещё?

AnyKey
()
Ответ на: комментарий от AnyKey

root@cyclon / # cat /etc/exports
# /etc/exports: NFS file systems being exported.  See exports(5).
/var/www/localhost/htdocs 192.168.147.2/32(rw,insecure,sync,root_squash,anonuid=0,anongid=0)

root@cyclon / # cat /etc/hosts.deny
ALL: 10.20.0.9

root@cyclon / # iptables -L -v
Chain INPUT (policy DROP 166K packets, 52M bytes)
 pkts bytes target     prot opt in     out     source               destination
  248 65452 ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp dpt:http
2439K  164M ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp dpt:ftp
 145K   12M ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp dpt:ssh
 1472  110K ACCEPT     icmp --  any    any     anywhere             anywhere            icmp echo-request limit: avg 5/min burst 5
 646M  111G ACCEPT     all  --  any    any     anywhere             anywhere            state RELATED,ESTABLISHED
12122  732K ACCEPT     all  --  lo     any     anywhere             localhost
10436  790K ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp dpt:rsync
3484K  780M ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp dpt:4662
    0     0 ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp spt:5190 dpt:5190
62310 3085K ACCEPT     tcp  --  any    any     anywhere             anywhere            multiport ports netbios-ns,netbios-dgm,netbios-ssn,epmap,profile,microsoft-ds,https
1990K  223M ACCEPT     udp  --  any    any     anywhere             anywhere            multiport ports microsoft-ds,netbios-ns,netbios-dgm,https
 2450  277K ACCEPT     udp  --  any    any     192.168.0.0/16       anywhere            multiport ports nfs,sunrpc,41736,33382,32767
   17  1044 ACCEPT     tcp  --  any    any     192.168.0.0/16       anywhere            multiport ports nfs,sunrpc,41736,33382,32767
   13  1080 ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp spts:6881:6999 dpts:6881:6999
  280  191K ACCEPT     tcp  --  any    any     anywhere             anywhere            multiport ports 9176,8099,4012
  961  108K ACCEPT     tcp  --  any    any     anywhere             anywhere            tcp dpt:6666
    0     0 ACCEPT     udp  --  any    any     anywhere             anywhere            udp dpt:6666

Chain FORWARD (policy ACCEPT 528K packets, 294M bytes)
 pkts bytes target     prot opt in     out     source               destination

Chain OUTPUT (policy ACCEPT 991M packets, 1171G bytes)
 pkts bytes target     prot opt in     out     source               destination

cyclon ★★★★★
() автор топика
Ответ на: комментарий от cyclon

>root@cyclon / # cat /etc/exports
># /etc/exports: NFS file systems being exported.  See exports(5).
>/var/www/localhost/htdocs 192.168.147.2/32(rw,insecure,sync,root_squash,anonuid=0,anongid=0)

>mount -t nfs 192.168.147.1:/ /mnt/test

Почему ты пытаешься монтировать / , хотя в /etc/exports он не расшарен?

sdio ★★★★★
()
Ответ на: комментарий от sdio

> Почему ты пытаешься монтировать / , хотя в /etc/exports он не расшарен?

я его удалил, потому как нет разницы, можно и /var/www/localhost/htdocs.

НА 192.168.147.1 должно быть т.к. это таже самая машина, на другие ИПы rpcinfo вааще встаёт в ступор и чё то ждёт (уходит только по Ctrl+C), например на 10.20.1.75, 81.9.х.х, где последний есть внешний ИП.

cyclon ★★★★★
() автор топика
Ответ на: комментарий от cyclon

root@cyclon / # ifconfig
eth0      Link encap:Ethernet  HWaddr 00:05:5D:6A:A7:01
          inet addr:10.20.1.75  Bcast:10.255.255.255  Mask:255.0.0.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:8539932 errors:11309 dropped:0 overruns:0 frame:11440
          TX packets:13226841 errors:1 dropped:30 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:642906667 (613.1 Mb)  TX bytes:1858426549 (1772.3 Mb)
          Interrupt:20 Base address:0x4c00

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:3001 errors:0 dropped:0 overruns:0 frame:0
          TX packets:3001 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:194590 (190.0 Kb)  TX bytes:194590 (190.0 Kb)

ppp0      Link encap:Point-to-Point Protocol
          inet addr:81.9.x.x  P-t-P:1.1.1.1  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1000  Metric:1
          RX packets:34368 errors:0 dropped:0 overruns:0 frame:0
          TX packets:30109 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:3
          RX bytes:17353166 (16.5 Mb)  TX bytes:3186606 (3.0 Mb)

vmnet1    Link encap:Ethernet  HWaddr 00:50:56:C0:00:01
          inet addr:192.168.148.1  Bcast:192.168.148.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:859 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

vmnet8    Link encap:Ethernet  HWaddr 00:50:56:C0:00:08
          inet addr:192.168.147.1  Bcast:192.168.147.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2485 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4065 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)

cyclon ★★★★★
() автор топика
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.