Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

WinSCP Hates Me

Newbie Spellweaver
Joined
Oct 14, 2014
Messages
24
Reaction score
0
the server ip is 192.168.1.250 and refuses to connect.
I tried apt-get install openssh-server but it says uptodate :(
any ideas?:?:
 
Newbie Spellweaver
Joined
Oct 14, 2014
Messages
24
Reaction score
0
scan the server ip? did that and got,
Starting Nmap 6.47 ( ) at 2014-10-16 13:23 Eastern Daylight Time
Note: Host seems down. If it is really up, but blocking our ping probes, try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 3.84 seconds
I prob did it wrong D:
 
Upvote 0
Skilled Illusionist
Joined
Feb 2, 2011
Messages
382
Reaction score
200
nmap --iflist

its telling you what to try in the output.......

nmap -Pn 192.168.1.250

should list all open ports if you want to try a specific port use

nmap 192.168.1.250 -p 22
or for a little more info
nmap -v -Pn 192.168.1.250 -p 22


by the way, what does your router show as the ip?
 
Upvote 0
Newbie Spellweaver
Joined
Oct 14, 2014
Messages
24
Reaction score
0
well that didn't work lol, SS time
server ip [IMG]https://forum.ragezone.com/ima...forum.ragezone.com/images/404_image.png[/IMG]
 
Upvote 0
In the Emperor name
Loyal Member
Joined
Jun 25, 2011
Messages
1,605
Reaction score
238
are you using a pre-made vm, or you made it (like installing linux from scratch)?
 
Last edited:
Upvote 0
In the Emperor name
Loyal Member
Joined
Jun 25, 2011
Messages
1,605
Reaction score
238
ok, i bet the problem is easy
you can ping from inside linux, lets say google?
ping

if give any error.. means the premade (like many premades) uses vmnet8, and that virtual lan is not the same for everyone( in my case is 192.168.25.1) so, your ip is never going to work
best thing to do? poweroff linux
and change the lan to bridge
start linux, let linux detect your new card
select dchp mode
and done

if you want a fixed ip, set t from the router if you want, is easier than done it from windows
 
Upvote 0
In the Emperor name
Loyal Member
Joined
Jun 25, 2011
Messages
1,605
Reaction score
238
wrong, if you have it to bridge (and dchp) your ip must be 10.0.0.x
not 192.168.25.x

if you have it on bridge mode, linux is on static ip mode ( is not using your router ip, is using a pre defined 192.x.x.x ip) and ofc is not going to work

host unknow means your linux is isolated from internet (even from any other pcs) for that you cant ping sites, connect winscp, etc
 
Upvote 0
In the Emperor name
Loyal Member
Joined
Jun 25, 2011
Messages
1,605
Reaction score
238
weird window.. is virtual machine (vmware) or virtual box?
toy can try to set ubuntu (i guess you are using ubuntu, right?) to dchp mode

try this:
sudo nano /etc/network/interfaces

you see something like this:
auto eth0 iface eth0 inet static
address 10.0.0.100
netmask 255.255.255.0
network 10.0.0.1
broadcast 10.0.0.255
gateway 46.185.128.91
(ofc with diferent ips)
replace all that for

auto eth0
iface eth0 inet dhcp

and the restart or execute:
sudo /etc/init.d/networking restart
 
Last edited:
Upvote 0
Back
Top