What are the gateways on the two "end systems?" I dont see anything glaringly wrong with your config at first glance. What is the output of "show route" from vyatta CLI and "route -n" from the unix shell?

------------------
Aubrey Wells
Senior Engineer
Shelton | Johns Technology Group
404.478.2790
www.sheltonjohns.com



On Oct 19, 2007, at 12:23 AM, saptarshi moitra wrote:

Hi Everyone

I have Vyatta running on a system with the following interfaces

eth0 : 129.107.97.22
eth1 : 192.168.172.1
eth2 : 10.0.0.1

eth0 is connected to the internet through the gateway 129.107.97.250
eth1 is connected to one end system of IP 192.168.172.2
eth2 is connected to ane end system of IP 10.0.0.2

I am able to ping all these IP s from my vyatta router .
however i am unable to ping 192.168.172.1 or 192.168.172.2 or 129.107.97.22 from end system 10.0.0.2 i am also unble to ping 10.0.0.1 or 10.0.0.2 or 129.107.97.22 from end system 192.168.172.2

here is the entire configuration of my vyatta router
Can anyone figure out what i need to do to make these two systems communicate with each other as well as to the internet through the vyatta router?

Thanks
Saptarshi

........................................................


protocols {
        static {
            disable: false
            route 0.0.0.0/0 {
                next-hop: 129.107.97.250
                metric: 1
            }
        }
    }
    policy {
    }
    interfaces {
        restore: false
        loopback lo {
            description: ""
        }
        ethernet eth0 {
            disable: false
            discard: false
            description: ""
            hw-id: 00:07:E9:0F:D4:F8
            duplex: "auto"
            speed: "auto"
            address 129.107.97.22 {
                prefix-length: 24
                disable: false
            }
        }
        ethernet eth1 {
            disable: false
            discard: false
            description: ""
            hw-id: 00:07:E9:0F:D4:F9
            duplex: "auto"
            speed: "auto"
            address 192.168.172.1 {
                prefix-length: 24
                disable: false
            }
        }
        ethernet eth2 {
            disable: false
            discard: false
            description: ""
            hw-id: 00:13:72:8D:46:39
            duplex: "auto"
            speed: "auto"
            address 10.0.0.1 {
                prefix-length: 24
                disable: false
            }
        }
    }
    service {
        nat {
            rule 1 {
                type: "source"
                outbound-interface: "eth0"
                protocols: "all"
                source {
                    network: 192.168.172.0/24
                }
                destination {
                    network: 0.0.0.0/0
                }
                outside-address {
                    address: 129.107.97.22
                }
            }
            rule 10 {
                type: "destination"
                inbound-interface: "eth0"
                protocols: "all"
                destination {
                    address: 129.107.97.22
                }
                inside-address {
                    address: 192.168.172.2
                    range {
                        start: 192.168.172.1
                        stop: 192.168.172.10
                    }
                }
            }
        }
        http {
            port: 80
        }
        ssh {
            port: 22
            protocol-version: "v2"
        }
        telnet {
            port: 23
        }
    }
    firewall {
        log-martians: "enable"
        send-redirects: "disable"
        receive-redirects: "disable"
        ip-src-route: "disable"
        broadcast-ping: "disable"
        syn-cookies: "enable"
    }
    system {
        host-name: "vyatta"
        domain-name: ""
        name-server 129.107.1.9
        time-zone: "GMT"
        ntp-server "69.59.150.135"
        login {
            user root {
                full-name: ""
                authentication {
                    encrypted-password: "$1$$Ht7gBYnxI1xCdO/JOnodh."
                }
            }
            user vyatta {
                full-name: ""
                authentication {
                    encrypted-password: "$1$$Ht7gBYnxI1xCdO/JOnodh."
                }
            }
        }
        package {
            auto-sync: 1
            repository community {
                component: "main"
                url: " http://archive.vyatta.com/vyatta";
            }
        }
    }
    rtrmgr {
        config-directory: "/opt/vyatta/etc/config"
    }




_______________________________________________
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users

_______________________________________________
Vyatta-users mailing list
Vyatta-users@mailman.vyatta.com
http://mailman.vyatta.com/mailman/listinfo/vyatta-users

Reply via email to