COCO999 发表于 2011-8-19 10:05:13

JUNOS8.5+JWEB8.5虚拟机下载+组播固化+VLAN+逻辑路由器配置

JUNOS8.5+JWEB8.5虚拟机下载--组播固化+VLAN+逻辑路由器

Junos成功瘦身,117M,解压缩后149M。内置组播补丁,组播固化补丁,

支持Vlan-tagging,支持Jweb 支持逻辑路由器
支持十个千兆网卡,这下可以搭出非常复杂的拓扑了!
支持FreeBSD下的操作。

经本人试验,可稳定运行,启动与关机均只需一分钟。

系统运行后,可直接在虚拟机里操作,或者通过SecureCRT 来Telnet登陆,

同时支持串口登陆,压缩包内含pipe proxy,

系统账号:root   密码:juniper123
用户账号:mengmeng 密码:test123

系统环境:
      VMware-6.0

      Freebsd 6.1

      jinstall-8.5R1.14-domestic-signed

      jweb-8.5R1.14-signed

系统运行后,自动支持组播,

支持web访问,地址:http://192.168.1.254
支持Telnet 访问,地址:192.168.1.254端口号:23


里面已经配置了OSPF协议,可以完美运行。拓扑图如下:


root> show ospf neighbor logical-router r1
Address          Interface            State   ID               PriDead
10.0.4.6         em1.12               Full      10.0.6.2         128    37
10.0.4.13      em1.13               Full      10.0.3.3         128    34




root> show ospf neighbor logical-router r5   
Address          Interface            State   ID               PriDead
10.0.2.2         em5.53               Full      10.0.3.3         128    34
10.0.2.10      em5.54               Full      10.0.3.4         128    33
10.0.8.5         em5.56               Full      10.0.9.6         128    31
10.0.8.10      em5.57               Full      10.0.9.7         128    34
root> show route logical-router r1 inet.0: 20 destinations, 20 routes (20 active, 0 holddown, 0 hidden)
+ = Active Route, - = Last Active, * = Both10.0.2.0/30      * 00:02:51, metric 2
                  > to 10.0.4.13 via em1.13
10.0.2.4/30      * 00:02:51, metric 2
                  > to 10.0.4.13 via em1.13
10.0.2.8/30      * 00:02:51, metric 3
                  > to 10.0.4.6 via em1.12
                      to 10.0.4.13 via em1.13
10.0.3.3/32      * 00:02:51, metric 1
                  > to 10.0.4.13 via em1.13
10.0.3.4/32      * 00:02:51, metric 2
                      to 10.0.4.6 via em1.12
                  > to 10.0.4.13 via em1.13
10.0.3.5/32      * 00:02:51, metric 2
                  > to 10.0.4.13 via em1.13
10.0.4.0/30      * 00:02:51, metric 2
                      to 10.0.4.6 via em1.12
                  > to 10.0.4.13 via em1.13
10.0.4.4/30      * 00:03:56
                  > via em1.12
10.0.4.5/32      * 00:03:56
                      Local via em1.12
10.0.4.8/30      * 00:03:06, metric 2
                  > to 10.0.4.6 via em1.12
10.0.4.12/30       * 00:03:56
                  > via em1.13
10.0.4.14/32       * 00:03:56
                      Local via em1.13
10.0.6.1/32      * 00:03:56
                  > via lo0.1
10.0.6.2/32      * 00:03:06, metric 1
                  > to 10.0.4.6 via em1.12
10.0.8.0/30      * 00:02:51, metric 4
                  > to 10.0.4.13 via em1.13
10.0.8.4/30      * 00:02:51, metric 3
                  > to 10.0.4.13 via em1.13
10.0.8.8/30      * 00:02:51, metric 3
                  > to 10.0.4.13 via em1.13
10.0.9.6/32      * 00:02:51, metric 3
                  > to 10.0.4.13 via em1.13
10.0.9.7/32      * 00:02:51, metric 3
                  > to 10.0.4.13 via em1.13
224.0.0.5/32       * 00:03:56, metric 1
                      MultiRecvroot>
全部配置如下:root> show configuration
## Last commit: 2008-10-10 17:44:21 UTC by root
version 8.5R1.14;
system {
    backup-router 192.168.1.1;
    root-authentication {
      encrypted-password "$1$Mvxox7d8$UVmJd7OLkwbIJ/B7Kbavz0"; ## SECRET-DATA
    }
    login {
      user mengmeng {
            uid 2001;
            class super-user;
            authentication {
                encrypted-password "$1$GAAB2nYd$v.aOFalSpMh5rbiWG/f1a."; ## SECRET-DATA
            }
      }
    }
    services {
      ftp;
      telnet;
      web-management {
            http {
                port 80;
            }      
      }
    }
}
logical-routers {
    r1 {
      interfaces {
            em1 {
                unit 12 {
                  vlan-id 12;
                  family inet {
                        address 10.0.4.5/30;
                  }
                }
                unit 13 {
                  vlan-id 13;
                  family inet {
                        address 10.0.4.14/30;
                  }
                }
            }
            lo0 {
                unit 1 {
                  family inet {
                        address 10.0.6.1/32;
                  }
                }
            }
      }
      protocols {
            ospf {
                area 0.0.0.10 {
                  interface em1.12;
                  interface em1.13;
                  interface lo0.1;
                }
            }
      }
    }
    r2 {
      interfaces {
            em2 {
                unit 21 {
                  vlan-id 12;
                  family inet {
                        address 10.0.4.6/30;
                  }
                }
                unit 23 {
                  vlan-id 23;
                  family inet {
                        address 10.0.4.2/30;
                  }
                }
                unit 24 {
                  vlan-id 24;
                  family inet {
                        address 10.0.4.10/30;
                  }
                }
            }
            lo0 {
                unit 2 {
                  family inet {
                        address 10.0.6.2/32;
                  }
                }
            }
      }
      protocols {
            ospf {
                area 0.0.0.10 {
                  interface em2.21;
                  interface em2.23;
                  interface em2.24;
                  interface lo0.2;
                }
            }
      }
    }
    r3 {
      interfaces {
            em3 {
                unit 31 {
                  vlan-id 13;
                  family inet {
                        address 10.0.4.13/30;
                  }
                }
                unit 32 {
                  vlan-id 23;
                  family inet {
                        address 10.0.4.1/30;
                  }
                }
                unit 34 {
                  vlan-id 34;
                  family inet {
                        address 10.0.2.5/30;
                  }
                }
                unit 35 {
                  vlan-id 35;
                  family inet {
                        address 10.0.2.2/30;
                  }
                }
            }
            lo0 {
                unit 3 {
                  family inet {
                        address 10.0.3.3/32;
                  }
                }
            }
      }         
      protocols {
            ospf {
                area 0.0.0.10 {
                  interface em3.31;
                  interface em3.32;
                }
                area 0.0.0.0 {
                  interface em3.34;
                  interface em3.35;
                  interface lo0.3;
                }
            }
      }
    }
    r4 {
      interfaces {
            em4 {
                unit 42 {
                  vlan-id 24;
                  family inet {
                        address 10.0.4.9/30;
                  }
                }   
                unit 43 {
                  vlan-id 34;
                  family inet {
                        address 10.0.2.6/30;
                  }
                }
                unit 45 {
                  vlan-id 45;
                  family inet {
                        address 10.0.2.10/30;
                  }
                }
            }
            lo0 {
                unit 4 {
                  family inet {
                        address 10.0.3.4/32;
                  }
                }
            }
      }
      protocols {
            ospf {
                area 0.0.0.10 {
                  interface em4.42;
                }
                area 0.0.0.0 {
                  interface em4.43;
                  interface em4.45;
                  interface lo0.4;
                }
            }
      }
    }
    r5 {
      interfaces {
            em5 {
                unit 53 {
                  vlan-id 35;
                  family inet {
                        address 10.0.2.1/30;
                  }
                }
                unit 54 {
                  vlan-id 45;
                  family inet {
                        address 10.0.2.9/30;
                  }
                }
                unit 56 {
                  vlan-id 56;
                  family inet {
                        address 10.0.8.6/30;
                  }
                }
                unit 57 {
                  vlan-id 57;
                  family inet {
                        address 10.0.8.9/30;
                  }
                }
            }
            lo0 {
                unit 5 {
                  family inet {
                        address 10.0.3.5/32;
                  }
                }
            }      
      }
      protocols {
            ospf {
                area 0.0.0.0 {
                  interface em5.53;
                  interface em5.54;
                  interface lo0.5;
                }
                area 0.0.0.1 {
                  interface em5.56;
                  interface em5.57;
                }
            }
      }
    }
    r6 {
      interfaces {
            em6 {
                unit 65 {
                  vlan-id 56;
                  family inet {
                        address 10.0.8.5/30;
                  }
                }
                unit 67 {
                  vlan-id 67;
                  family inet {
                        address 10.0.8.1/30;
                  }
                }
            }
            lo0 {
                unit 6 {
                  family inet {
                        address 10.0.9.6/32;
                  }
                }
            }
      }
      protocols {
            ospf {
                area 0.0.0.1 {
                  interface em6.65;
                  interface em6.67;
                  interface lo0.6;
                }   
            }
      }
    }
    r7 {
      interfaces {
            em7 {
                unit 75 {
                  vlan-id 57;
                  family inet {
                        address 10.0.8.10/30;
                  }
                }
                unit 76 {
                  vlan-id 67;
                  family inet {
                        address 10.0.8.2/30;
                  }
                }
            }
            lo0 {
                unit 7 {
                  family inet {
                        address 10.0.9.7/32;
                  }
                }
            }
      }
      protocols {
            ospf {
                area 0.0.0.1 {
                  interface em7.75;
                  interface em7.76;
                  interface lo0.7;
                }
            }
      }
    }
}
interfaces {
    em0 {
      unit 0 {
            family inet {
                address 192.168.1.254/24;
            }
      }
    }               
    em1 {
      vlan-tagging;
    }
    em2 {
      vlan-tagging;
    }
    em3 {
      vlan-tagging;
    }
    em4 {
      vlan-tagging;
    }
    em5 {
      vlan-tagging;
    }
    em6 {
      vlan-tagging;
    }
    em7 {
      vlan-tagging;
    }
}
routing-options {   
    static {
      route 0.0.0.0/0 {
            next-hop 192.168.1.1;
            retain;
            no-readvertise;
      }
    }
}root>



http://bbs.hh010.com/xwb/images/bgimg/icon_logo.png 该贴已经同步到 COCO999的微博

COCO999 发表于 2011-8-19 10:05:22

{:6_267:}

wesleyou 发表于 2011-8-19 10:25:03

这个不错,支持了。多谢。

xl_zhang90 发表于 2011-8-19 11:16:37

{:6_267:}

wwwzhuce 发表于 2011-8-19 16:39:25

怎么没看到下载地址啊啊????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

wwwzhuce 发表于 2011-8-19 16:43:10

怎么没看到下载地址啊啊????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????

天溪云径 发表于 2011-11-9 17:54:32

{:6_278:}下载地址咧?

tanxiaoguoguo 发表于 2011-11-11 13:03:19

楼主怎么没有下载地址呀

tanxiaoguoguo 发表于 2011-11-11 13:03:37

楼主怎么没有下载地址呀

飞海の剑 发表于 2011-12-30 23:55:59

hhhhhhhhhhxxxxx

hujw6960 发表于 2012-2-1 12:25:08

支持!

xiaobudian 发表于 2012-1-26 13:21:43

good

张杰您好 发表于 2012-2-15 17:23:25

版主大大 你还有这个虚拟机吗 我找的连接貌似都失效了 能共享一下吗

八宝米缸 发表于 2012-4-12 12:12:11

顶地鞥哈哈哈

jakieli 发表于 2012-4-16 14:30:18

下载地址呢?
页: [1] 2 3 4
查看完整版本: JUNOS8.5+JWEB8.5虚拟机下载+组播固化+VLAN+逻辑路由器配置