Hi all. I have a new network device. An Extron DVS 304 to be precise. I want to access the web page by IP. The IP address is 192.168.254.254 255.255.0.0 my network is 192.168.0.* 255.255.255.0 When I type in the IP 192.168.254.254 firefox takes about 5 mins then never loads the page and says The connection has timed out. I tried resetting the unit. I tried setting my PC to 192.168.254.1 255.255.0.0 Can anyone give me a pointer as to what I am doing wrong? Thanks Paul -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
Le 25/02/2019 à 15:08, Paul Groves a écrit :
I tried setting my PC to 192.168.254.1 255.255.0.0
you can add a sub-network of your usual one on this address. Last time I did it was with yast, but it's long time ago, for a similar goal as yours jdd -- http://dodin.org -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 25/02/2019 15.08, Paul Groves wrote:
Hi all.
I have a new network device. An Extron DVS 304 to be precise.
I want to access the web page by IP. The IP address is 192.168.254.254 255.255.0.0
my network is 192.168.0.* 255.255.255.0
When I type in the IP 192.168.254.254 firefox takes about 5 mins then never loads the page and says The connection has timed out.
You have to add an IP to your computer on the range 192.168.254.*
I tried resetting the unit.
I tried setting my PC to 192.168.254.1 255.255.0.0
Should be 168.254.1 mask 255.255.254.255 -- Cheers / Saludos, Carlos E. R. (from 15.0 x86_64 at Telcontar)
On 25/02/2019 15.46, Carlos E. R. wrote:
On 25/02/2019 15.08, Paul Groves wrote:
I tried resetting the unit.
I tried setting my PC to 192.168.254.1 255.255.0.0
Should be 168.254.1 mask 255.255.254.255
Oops. mask 255.255.255.0 -- Cheers / Saludos, Carlos E. R. (from 15.0 x86_64 at Telcontar)
On 2019-02-25 9:08 a.m., Paul Groves wrote:
Hi all.
I have a new network device. An Extron DVS 304 to be precise.
Did it come with a manual? What does the manual say about initial configuration? https://www.extron.com/download/files/userman/68-1039-50DVS304SeriesSetupGui... https://www.blk.gr/uploads/files/products/attachments/pdf/pdfs/Extron/DVS-DV...
I want to access the web page by IP. The IP address is 192.168.254.254 255.255.0.0
Is that what the manual says to use? I must admit what when I point my browser at my router for web-based config I don't use a network mask. And, hmm, that does seem an odd address to use. But it does seem to be the one mentioned in the user manual. Or one of them, at lest.
my network is 192.168.0.* 255.255.255.0
When I type in the IP 192.168.254.254 firefox takes about 5 mins then never loads the page and says The connection has timed out.
I tried resetting the unit.
I tried setting my PC to 192.168.254.1 255.255.0.0
Can anyone give me a pointer as to what I am doing wrong?
The default on my router and on the various Linksys ones I've encountered is 192.168.0.1. I don't know how universal that is, but you might give it a try. You might also try the 10.x.x.x address mentioned in the manual. When I'm absolutely perplexed after putting a new device on the home net and its not here I thought it was, I use NMAP to do a network scan I realise that is time consuming, but like so many things in computing it gives me an opportunity to make a pot of coffee or make and eat dinner, or go to the shops or the library or many of the other things that need to be done if you can drag yourself away from they keyboard. -- A: Yes. > Q: Are you sure? >> A: Because it reverses the logical flow of conversation. >>> Q: Why is top posting frowned upon? -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
Paul Groves wrote:
Hi all.
I have a new network device. An Extron DVS 304 to be precise.
I want to access the web page by IP. The IP address is 192.168.254.254 255.255.0.0
my network is 192.168.0.* 255.255.255.0
When I type in the IP 192.168.254.254 firefox takes about 5 mins then never loads the page and says The connection has timed out.
Because there's no way defined to get there :( Just add a proper additional address to your interface (assuming it's eth0) ip addr add 192.168.254.1/24 dev eth0 and maybe also a route ip route add 192.168.254.0/24 dev eth0 Then you should be able to connect -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 25/02/2019 15:25, Peter Suetterlin wrote:
and maybe also a route
ip route add 192.168.254.0/24 dev eth0
Then you should be able to connect
OK a route sounds like it could work. so when I go to network config I can go to routes then I can specify Address, Netmask, Gateway, Metric What should I set them to?: Address: 192.168.254.1 Netmask: 255.255.255.0 Gateway: ? Metric:? my gateway is 192.168.0.1/24, should I use that? And what is metric supposed to be set to? Thanks Paul -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
Paul Groves wrote:
On 25/02/2019 15:25, Peter Suetterlin wrote:
and maybe also a route
ip route add 192.168.254.0/24 dev eth0
Then you should be able to connect
OK a route sounds like it could work. so when I go to network config I
Just do what Peter wrote - ip addr add 192.168.254.1/24 dev eth0 the route is added automagically. -- Per Jessen, Zürich (9.5°C) http://www.dns24.ch/ - free dynamic DNS, made in Switzerland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
Per Jessen wrote:
Paul Groves wrote:
On 25/02/2019 15:25, Peter Suetterlin wrote:
and maybe also a route
ip route add 192.168.254.0/24 dev eth0
Then you should be able to connect
OK a route sounds like it could work. so when I go to network config I
Just do what Peter wrote -
ip addr add 192.168.254.1/24 dev eth0
the route is added automagically.
It wasn't when I tested it here, maybe because it was a secondary address? That's why I added the route..... -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
Peter Suetterlin wrote:
Per Jessen wrote:
Paul Groves wrote:
On 25/02/2019 15:25, Peter Suetterlin wrote:
and maybe also a route
ip route add 192.168.254.0/24 dev eth0
Then you should be able to connect
OK a route sounds like it could work. so when I go to network config I
Just do what Peter wrote -
ip addr add 192.168.254.1/24 dev eth0
the route is added automagically.
It wasn't when I tested it here, maybe because it was a secondary address? That's why I added the route.....
The route for the subnet (192.168.254.0/24) is added automatically - have just tried it on leap15, worked fine. -- Per Jessen, Zürich (7.1°C) http://www.hostsuisse.com/ - virtual servers, made in Switzerland. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On Mon, 25 Feb 2019 14:08:34 +0000 Paul Groves <paul.groves.787@gmail.com> wrote:
I have a new network device. An Extron DVS 304 to be precise.
I want to access the web page by IP. The IP address is 192.168.254.254 255.255.0.0
my network is 192.168.0.* 255.255.255.0
When I type in the IP 192.168.254.254 firefox takes about 5 mins then never loads the page and says The connection has timed out.
I tried resetting the unit.
I tried setting my PC to 192.168.254.1 255.255.0.0
Can anyone give me a pointer as to what I am doing wrong?
First, set your PC back how it was so it works as it used to. Then realize that any device on your net has to have an address that is compatible with the rest of your net. So since your PC is in the range 192.168.0.* then your new Extron unit needs to be in that range too. So open its user manual and read it. Specifically, go to page 2-17 and read the section on IP configuration. Follow the instructions to give the device a suitable unique address in the 192.168.0.* range. Then type that address into the browser on your PC. Simples. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 25/02/2019 15:28, Dave Howorth wrote:
So open its user manual and read it. Specifically, go to page 2-17 and read the section on IP configuration. Follow the instructions to give the device a suitable unique address in the 192.168.0.* range.
I tired that already. I press 4 and next for 2 seconds. Set the ip as follows: IP: 192.168.000.024 Subnet: 255.255.255.000 Gateway: 192.168.000.001 But the system does not save the last integer so it saves the IP as this: IP: 192.168.000.000 Subnet: 255.255.255.000 Gateway: 192.168.000.000 Which seems like a bug. So hence why I am asking. Still waiting to hear from Extron. about this. -- To unsubscribe, e-mail: opensuse+unsubscribe@opensuse.org To contact the owner, e-mail: opensuse+owner@opensuse.org
On 25/02/2019 17.24, Paul Groves wrote:
On 25/02/2019 15:28, Dave Howorth wrote:
So open its user manual and read it. Specifically, go to page 2-17 and read the section on IP configuration. Follow the instructions to give the device a suitable unique address in the 192.168.0.* range.
I tired that already. I press 4 and next for 2 seconds. Set the ip as follows: IP: 192.168.000.024 Subnet: 255.255.255.000 Gateway: 192.168.000.001
But the system does not save the last integer so it saves the IP as this: IP: 192.168.000.000 Subnet: 255.255.255.000 Gateway: 192.168.000.000
Try to set instead: IP: 192.168.000.240 Subnet: 255.255.255.000 Gateway: 192.168.000.010 -- Cheers / Saludos, Carlos E. R. (from 15.0 x86_64 at Telcontar)
participants (7)
-
Anton Aylward
-
Carlos E. R.
-
Dave Howorth
-
jdd@dodin.org
-
Paul Groves
-
Per Jessen
-
Peter Suetterlin