Cannot ping / reach 192.168.1.* range LAN IP from PC through router
Have Olegs FW 1.9.2.7-10 on WL-500g Premium
When logged into the router I can ping the local IP of my printer which is 192.168.1.165
when I am on another PC (192.168.1.100) I cannot reach / ping 192.168.1.165
What is wrong in the config???
Any help much appreciated
doesn't work .... pls help!
After a few weeks of trying I finally decided to post since I am not able to install transmission on my WL-500g.
I have a HDD attached via USB and partitioned like this:
Code:
Filesystem 1k-blocks Used Available Use% Mounted on
/dev/root 3008 3008 0 100% /
/dev/discs/disc0/part2 988244 93504 844540 10% /opt
/dev/discs/disc0/part3 479478544 144144 454978256 0% /tmp/mnt/disc0_3
I have installed transmission - 1.75-1. All the files seem to be ok:
Code:
[admin@router root]$ ls -al /opt/bin/transmission*
-rwxr-xr-x 1 admin root 619920 Sep 14 19:57 /opt/bin/transmission-daemon
-rwxr-xr-x 1 admin root 651164 Sep 14 19:57 /opt/bin/transmission-remote
-rwxr-xr-x 1 admin root 628180 Sep 14 19:57 /opt/bin/transmissioncli
My S90transmission-daemon looks like this:
Code:
[admin@router root]$ cat /opt/etc/init.d/S90transmission-daemon
#!/bin/sh
#
# Startup script for transmission
export PATH=$PATH:/opt/bin:/opt/sbin
HOME=/tmp
case $1 in
start)
# start transmission
echo "starting transmission" >> /tmp/syslog.log
nice /opt/bin/transmission-daemon /tmp/harddisk/transmission/config
;;
stop)
if [ -n "`pidof transmission-daemon`" ]; then
echo "stopping transmission"
kill -9 `pidof transmission-daemon`
fi
;;
restart|force-reload)
$0 stop
sleep 1
$0 start
;;
*)
echo "usage: $0 (start|stop|restart|force-reload)"
exit 1
esac
Rights on these files look like this:
Code:
[admin@router root]$ ls -al /opt/etc/init.d/
drwxr-xr-x 2 admin root 4096 Jan 18 10:00 .
drwxr-xr-x 11 admin root 4096 Jan 18 10:06 ..
-rwxr-xr-x 1 admin root 284 Jan 6 07:32 S10cron
-rwxr-xr-x 1 admin root 809 Sep 9 2007 S80lighttpd
-rwxr-xr-x 1 admin root 610 Jan 18 09:52 S90transmission-daemon
-rwxr-xr-x 1 admin root 522 Jun 6 2005 rc.unslung
But, when I run it, I get this:
Code:
[admin@router root]$ /opt/etc/init.d/S90transmission-daemon start
nice: transmission-daemon: No such file or directory
Even if I try to start directly the transmission-daemon I get the same error, that it does not exist. The file exists, but somehow I get this error and I can't get past this.:eek:
PLEASE HELP!:(