Question : hyper v netwrking woes

hi whats the best networking set up for this.


I have one PC connected to broadband  it just has the one nic no wireless gets its ip from the broadband router/modem


It is a hyper v server running 8 images

ideally id like all 8 to see the internet


but also need them to see each other (and the host (not a deal breaker))


what im not clear on is best way

let the broad band do dhcp and dns?  (not really its a domian im running on vm)

default gateways?  if i have 8 vms what dg do you use so they all see each other properly



you get the idea i hope

cheers


images are all 2003

Answer : hyper v netwrking woes

Here is some code:

Private Sub TextBox1_KeyPress(ByVal KeyAscii As MSForms.ReturnInteger)
Select Case KeyAscii
   Case Asc("0") To Asc("9")
    Case Asc("-")
       If Instr(1,Me.TextBox1.Text,"-") > 0 Or Me.TextBox1.SelStart > 0 Then
           KeyAscii = 0
       End If
   Case Asc(".")
       If InStr(1, Me.TextBox1.Text, ".") > 0 Then
           KeyAscii = 0
       End If
   Case Else
       KeyAscii = 0
End Select
End Sub

from here:http://www.cpearson.com/excel/TextBox.htm

Random Solutions  
 
programming4us programming4us