Communicating Between 2 Subnets

Hi all,

I’m currently studying for the MCSA and now need to learn about AD Sites and services. What I hope to setup is 2 networks that mimic office networks. The trouble is, I cannot join the DC in one of my networks (192.168.2.0) to the domain in the other network (192.168.1.0). How can I get both networks to talk to each other? Do I have to have 1 router per network? Here is my router’s config:

[code]interfaces {
ethernet eth0 {
address dhcp
duplex auto
hw-id
smp_affinity auto
speed auto
}
ethernet eth1 {
address 192.168.1.1/24
duplex auto
hw-id
smp_affinity auto
speed auto
}
ethernet eth2 {
address 192.168.2.1/24
duplex auto
hw-id
smp_affinity auto
speed auto
}
loopback lo {
}
}
nat {
source {
rule 1 {
outbound-interface eth0
source {
address 192.168.1.0/24
}
translation {
address masquerade
}
}
rule 2 {
outbound-interface eth0
source {
address 192.168.2.0/24
}
translation {
address masquerade
}
}
}
}

   [/code]

Here is the output of show ip route:

S>* 0.0.0.0 [210/0] via 10.0.2.2, eth0 C>* 10.0.2.0/24 is directly connected, eth0 C>* 127.0.0.0/8 is directly connected, lo C>* 192.168.1.0/24 is directly connected, eth1 C>* 192.168.2.0/24 is directly connected, eth2

Any help would be greatly appreciated! Any questions, please let me know

Hi,
one router is ok.
normally you need to have dns configured, which can resolve correctly AD SRV records, etc
Can you advise which error you get on join?