Précédent   Forum des professionnels en informatique > Systèmes > Hardware > Réseaux et Internet > Dépannage et Assistance
Dépannage et Assistance Forum d'entraide sur le dépannage matériel. Avant de poster -> FAQ Hardware
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
Vieux 07/12/2003, 19h17   #1
LFC
Nouveau Membre du Club
 
Inscription : février 2003
Messages : 86
Détails du profil
Informations forums :
Inscription : février 2003
Messages : 86
Points : 35
Points : 35
Par défaut Allumer un PC à distance

Bonjour
Je voudrais savoir s'il existe un programme qui me permette de prendre la main sur un autre PC même s'il est éteint, donc je le rallumerais en passant via le bios.

J'ai cherché sur google, mais je n'ai rien trouvé.
Et sur ce forum, ceci : ici

Merci.
LFC est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2003, 19h21   #2
Membre habitué
 
Avatar de Driden
 
Inscription : mai 2003
Messages : 148
Détails du profil
Informations forums :
Inscription : mai 2003
Messages : 148
Points : 148
Points : 148
T'as le WOL (wake on lan) qui permet de demarrer un ordinateur par le reseau.
__________________
Driden

Portail Bioinformatique
Driden est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2003, 20h24   #3
Membre confirmé
 
Avatar de rolkA
 
Inscription : juillet 2003
Messages : 324
Détails du profil
Informations forums :
Inscription : juillet 2003
Messages : 324
Points : 294
Points : 294
Salut.

Pour faire çà par internet, il faut une carte mère ayant l'option "Wake on Ring", et un modem compatible...
Mais pour les détails techniques, je n'ai jamais eu affaire à ce genre de procédé... En effet, si le PC n'est pas allumé, comment le modem pourrait être connecté à internet ? C'est forcément possible puisque çà existe, mais çà me laisse perplexe.
__________________
Un historique local pour Visual Studio 2005 et 2008 :
http://www.codeplex.com/VLH2005
rolkA est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2003, 20h27   #4
Membre habitué
 
Avatar de Driden
 
Inscription : mai 2003
Messages : 148
Détails du profil
Informations forums :
Inscription : mai 2003
Messages : 148
Points : 148
Points : 148
Les modems ethernet on leur propre alimentation.
__________________
Driden

Portail Bioinformatique
Driden est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2003, 20h39   #5
Membre confirmé
 
Avatar de rolkA
 
Inscription : juillet 2003
Messages : 324
Détails du profil
Informations forums :
Inscription : juillet 2003
Messages : 324
Points : 294
Points : 294
Mais je parlais pour la connection... Si j'éteinds mon PC, la connection est perdue... C'est possible que le modem reste connecté sans que le PC soit allumé (simple question) ?
__________________
Un historique local pour Visual Studio 2005 et 2008 :
http://www.codeplex.com/VLH2005
rolkA est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2003, 21h38   #6
Membre émérite
 
Avatar de thecaptain
 
Étudiant
Inscription : décembre 2003
Messages : 915
Détails du profil
Informations professionnelles :
Activité : Étudiant

Informations forums :
Inscription : décembre 2003
Messages : 915
Points : 903
Points : 903
salut,

à priori, un modem 56k tu peux le laisser allumer oui... toutefois conserver la connextion ca me parait un peu exagérer (le prix ) Ensuite, je ne sais pas si un modem téléréseau ou ADSL est compatible avec ce genre de solution comme l'a dit rolkA

En tt cas si qqn a la réponse, ca m'intéresse aussi

@+
__________________
API ScrollBar (AS2)
Masapi (Massive Loading API) (AS3)
Lost in AStorm
thecaptain est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 07/12/2003, 22h18   #7
Membre habitué
 
Avatar de Driden
 
Inscription : mai 2003
Messages : 148
Détails du profil
Informations forums :
Inscription : mai 2003
Messages : 148
Points : 148
Points : 148
Avec un routeur c'est tout à fait possible vu que c'est lui qui fait en sorte que la connection soit toujours etablie.
__________________
Driden

Portail Bioinformatique
Driden est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 08/12/2003, 00h26   #8
Membre émérite
 
Avatar de thecaptain
 
Étudiant
Inscription : décembre 2003
Messages : 915
Détails du profil
Informations professionnelles :
Activité : Étudiant

Informations forums :
Inscription : décembre 2003
Messages : 915
Points : 903
Points : 903
en fouillant un peu j'ai trouvé ceci :

Citation:
"Magic packet" generating script has been released (WakeUp on Lan)


Summary
It is possible to cause certain PC configuration to 'Wake Up' (power on) when they receive a special packet that has been standardized by an official standard which leading Network card manufactures and BIOS manufactures has embraced. This is not vulnerability by its own, but it can be used with other vulnerabilities to pose a threat to the affected computer.


Details
By sending a special packet to a dormant computer a remote computer can be caused to "Wake Up" (Boot itself up). This feature can be disabled in the BIOS or in the Network card settings.
This means, for example, that users with a fixed Internet connection are not safe from attacks even when their computer is powered off.
This, in combination with other known attacks (for example: Windows NT protected by a Firewall is vulnerable to penetration during boot) can be used to break into the powered-down computer.

The following Perl script can be used to remotely turn on a computer:

#!/usr/bin/perl
#
# little perl script to send a wake-up "magic" packet via lan to power-on
# a PC. This is only supported by new BIOS versions, and must be supported
# by the LAN adapter.
#
# (c) 1999 by Marc Heuse <mheuse@kpmg.com>, the GPL applies to this code.
#

$IP="255.255.255.255"; # limited broadcast ip (default)
$PORT="9991"; # udp port (default)
$INIT_STREAM="\377\377\377\377\377\377"; # (don't change this)

require 5.002;
use Socket;

if (not defined $ARGV[0]) {
print "(c) 1999 by Marc Heuse <mheuse\@kpmg.com>\n\n";
print "Syntax: $0 ethernet_id [ip-address] [udp-port]\n\n";
print "Sends a magic wakeup packet to turn on a PC via the LAN\n";
print "Example: $0 00:80:c9:d1:e0:eb 10.70.82.255 53\n\n";
exit(1);
}

$ETHERNET_ID = $ARGV[0];
$IP = $ARGV[1] if defined $ARGV[1];
$PORT = $ARGV[2] if defined $ARGV[2];

print STDOUT "Sending to Ethernet-ID $ETHERNET_ID, using destination $IP:$PORT\n";

$protocol = getprotobyname('udp');
socket(S, &PF_INET, &SOCK_DGRAM, $protocol) || die "can't create socket\n";
setsockopt(S, SOL_SOCKET, SO_REUSEADDR, 1);
setsockopt(S, SOL_SOCKET, SO_BROADCAST, 1);
bind(S, sockaddr_in(0, INADDR_ANY)) || die "can't bind\n";
$ipaddr = inet_aton($IP) || die "unknown host: $IP\n";
$paddr = sockaddr_in($PORT, $ipaddr) || die "sockaddr failed\n";

$ETHERNET_ID =~ s/[:-]//g;
$ETHERNET_ID = pack "H12", $ETHERNET_ID;

$WAKE_UP = $INIT_STREAM; $i=0;
while ($i<16) {
$WAKE_UP = $WAKE_UP . $ETHERNET_ID;
$i++;
}

# send three times to be sure the system gets the packet
send (S, $WAKE_UP,0,$paddr) || die "send failed.\n";
send (S, $WAKE_UP,0,$paddr);
send (S, $WAKE_UP,0,$paddr);


Additional information
The script was provided by: Marc Heuse.
à voir ce que ca donne

@+
__________________
API ScrollBar (AS2)
Masapi (Massive Loading API) (AS3)
Lost in AStorm
thecaptain est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 08/12/2003, 09h13   #9
LFC
Nouveau Membre du Club
 
Inscription : février 2003
Messages : 86
Détails du profil
Informations forums :
Inscription : février 2003
Messages : 86
Points : 35
Points : 35
Bonjour
Il existe bien des programmes qui font ça, du moment que l'on a le WOL.

Si vous comprenez l'espagnol, un tutoriel est ici :
http://www.principiantes.info/lan/wake_on_lan.php

Je passe en "résolu".
LFC est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité Cette discussion est résolue.
Outils de la discussion



Fuseau horaire GMT +1. Il est actuellement 07h39.


 
 
 
 
Partenaires

Hébergement Web