* Newbie question
@ 2007-01-02 23:46 digital tech support
[not found] ` <20070102234608.47829.qmail-8hg4vH1ahbiB9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: digital tech support @ 2007-01-02 23:46 UTC (permalink / raw)
To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1.1: Type: text/plain, Size: 466 bytes --]
Forgvie me if this is the wrong list and point me to the right one ..
I have FC6 guest running and I can connect to my LAN from the guest OS. How do I ssh into the guest from the host?
Host IP: 192.168.0.139
Guest IP: 10.0.2.15
Should add a route to 10.0.2.0 network on my host?
Thanks
Josh
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[-- Attachment #1.2: Type: text/html, Size: 499 bytes --]
[-- Attachment #2: Type: text/plain, Size: 347 bytes --]
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
[-- Attachment #3: Type: text/plain, Size: 186 bytes --]
_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Newbie question
[not found] ` <20070102234608.47829.qmail-8hg4vH1ahbiB9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
@ 2007-01-02 23:48 ` Lonnie Mendez
2007-01-03 0:59 ` digital tech support
0 siblings, 1 reply; 4+ messages in thread
From: Lonnie Mendez @ 2007-01-02 23:48 UTC (permalink / raw)
To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
On Tue, 2007-01-02 at 15:46 -0800, digital tech support wrote:
> Forgvie me if this is the wrong list and point me to the right one ..
>
> I have FC6 guest running and I can connect to my LAN from the guest
> OS. How do I ssh into the guest from the host?
>
> Host IP: 192.168.0.139
> Guest IP: 10.0.2.15
>
> Should add a route to 10.0.2.0 network on my host?
No. The default user mode network is completely isolated from the host.
Use -redir to open a listening port on the host:
-redir tcp:5500::22
Then from host ssh -p 5500 localhost
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Newbie question
2007-01-02 23:48 ` Lonnie Mendez
@ 2007-01-03 0:59 ` digital tech support
[not found] ` <102047.60641.qm-7JG1krxjdK+B9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
0 siblings, 1 reply; 4+ messages in thread
From: digital tech support @ 2007-01-03 0:59 UTC (permalink / raw)
To: Lonnie Mendez, kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
[-- Attachment #1.1: Type: text/plain, Size: 841 bytes --]
Lonnie Mendez <lmendez19-bs+DcK7cjk954TAoqtyWWQ@public.gmane.org> wrote: On Tue, 2007-01-02 at 15:46 -0800, digital tech support wrote:
> Forgvie me if this is the wrong list and point me to the right one ..
>
> I have FC6 guest running and I can connect to my LAN from the guest
> OS. How do I ssh into the guest from the host?
>
> Host IP: 192.168.0.139
> Guest IP: 10.0.2.15
>
> Should add a route to 10.0.2.0 network on my host?
No. The default user mode network is completely isolated from the host.
Use -redir to open a listening port on the host:
-redir tcp:5500::22
Then from host ssh -p 5500 localhost
That was easy! Thanks it works!
Josh
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[-- Attachment #1.2: Type: text/html, Size: 1071 bytes --]
[-- Attachment #2: Type: text/plain, Size: 347 bytes --]
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
[-- Attachment #3: Type: text/plain, Size: 186 bytes --]
_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Newbie question
[not found] ` <102047.60641.qm-7JG1krxjdK+B9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
@ 2007-01-03 7:58 ` Dor Laor
0 siblings, 0 replies; 4+ messages in thread
From: Dor Laor @ 2007-01-03 7:58 UTC (permalink / raw)
To: digital tech support, Lonnie Mendez,
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Thanks for the Solaris info :)
Another option is to use a tap device option.
Checkout the scripts directory for 'kvm' init script that creates a
bridge, and the matching 'kvm' python script on the root kvm dir that
calls qemu with the right parameters.
Also please use text messages on the list.
________________________________________
From: kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
[mailto:kvm-devel-bounces-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of digital
tech support
Sent: Wednesday, January 03, 2007 3:00 AM
To: Lonnie Mendez; kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: [kvm-devel] Newbie question
Lonnie Mendez <lmendez19-bs+DcK7cjk954TAoqtyWWQ@public.gmane.org> wrote:
On Tue, 2007-01-02 at 15:46 -0800, digital tech support wrote:
> Forgvie me if this is the wrong list and point me to the right one ..
>
> I have FC6 guest running and I can connect to my LAN from the guest
> OS. How do I ssh into the guest from the host?
>
> Host IP: 192.168.0.139
> Guest IP: 10.0.2.15
>
> Should add a route to 10.0.2.0 network on my host?
No. The default user mode network is completely isolated from the host.
Use -redir to open a listening port on the host:
-redir tcp:5500::22
Then from host ssh -p 5500 localhost
That was easy! Thanks it works!
Josh
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-01-03 7:58 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-02 23:46 Newbie question digital tech support
[not found] ` <20070102234608.47829.qmail-8hg4vH1ahbiB9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2007-01-02 23:48 ` Lonnie Mendez
2007-01-03 0:59 ` digital tech support
[not found] ` <102047.60641.qm-7JG1krxjdK+B9c0Qi4KiSlZ8N9CAUha/QQ4Iyu8u01E@public.gmane.org>
2007-01-03 7:58 ` Dor Laor
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox