JuniperForum.com
March 12, 2010, 12:18:45 AM *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: If you have an interesting idea for an article or knowledgebase entry, please submit it!
 
  Home Help Login Register  
* *
Pages: [1]
  Print  
Author Topic: nsm 2009.1r1 question  (Read 276 times)
frank3427
Newbie
*
Posts: 43


View Profile
« on: February 08, 2010, 03:32:54 PM »

I was told that nsm2009 had the ability to  migrate SSG configuration to J-series or SRX. is this true?
Logged
aweck
Sr. Member
****
Posts: 362


View Profile WWW
« Reply #1 on: February 08, 2010, 04:51:02 PM »

Who told you that?
Logged

JNCIE-ER #63, JNCIS-M, JNCIS-SEC, JNCIS-FWV, JNCIS-SSL, JNCIA-EX, JNCIA-WX
http://www.hicnetworks.com/
frank3427
Newbie
*
Posts: 43


View Profile
« Reply #2 on: February 08, 2010, 08:12:11 PM »

A juniper technician
Logged
aweck
Sr. Member
****
Posts: 362


View Profile WWW
« Reply #3 on: February 08, 2010, 11:32:15 PM »

That's surprising.  He probably misspoke.  However, Juniper does have a beta tool on their support site that can be used to migrate ScreenOS to JUNOS for the SRX/J-series.
Logged

JNCIE-ER #63, JNCIS-M, JNCIS-SEC, JNCIS-FWV, JNCIS-SSL, JNCIA-EX, JNCIA-WX
http://www.hicnetworks.com/
frank3427
Newbie
*
Posts: 43


View Profile
« Reply #4 on: February 09, 2010, 09:30:14 AM »

yes, I have found the tool, a little limited
can you advise as to how to route between VR's. in the SSG I was using untrust,trust, and OAMP Vr's

untrust-vr  default to internet, static ro9ute to trust-vr
trust-vr default to untrust, static to oamp
oamp-vr default to trust-vr static to vpn tunnels
Logged
aweck
Sr. Member
****
Posts: 362


View Profile WWW
« Reply #5 on: February 09, 2010, 09:57:54 AM »

The JUNOS equivalent is routing-instances.  You can define different routing-instances, which can then be assigned interfaces and static routes to next-hop gateways or other routing-instances.
Logged

JNCIE-ER #63, JNCIS-M, JNCIS-SEC, JNCIS-FWV, JNCIS-SSL, JNCIA-EX, JNCIA-WX
http://www.hicnetworks.com/
frank3427
Newbie
*
Posts: 43


View Profile
« Reply #6 on: February 09, 2010, 10:22:23 AM »

Okay, I understand.

so how do you define routes to other routing instance's.

I have setup instance-type virtual-router.
Logged
aweck
Sr. Member
****
Posts: 362


View Profile WWW
« Reply #7 on: February 09, 2010, 11:02:14 AM »

Unfortunately it's not as simple as in ScreenOS.  I've only used separate virtual routers when they are connected via service sets, and in those cases static routes to the respective SP interfaces are the pathways between different routing-instances.  You can leak routes between routing instances using rib-groups, but that is a new learning curve and takes some time to understand.  You might want to think about the necessity of separate virtual routers in your environment.  This is a good link: http://forums.juniper.net/t5/Junos/ScreenOS-to-JunOS-VR-and-Instance/m-p/33412;jsessionid=36802BD3EECA70BF18E2596B50456DE2
Logged

JNCIE-ER #63, JNCIS-M, JNCIS-SEC, JNCIS-FWV, JNCIS-SSL, JNCIA-EX, JNCIA-WX
http://www.hicnetworks.com/
aweck
Sr. Member
****
Posts: 362


View Profile WWW
« Reply #8 on: February 09, 2010, 11:13:18 AM »

Found one more useful link: http://forums.juniper.net/t5/SRX-Services-Gateway/filter-based-forwarding-question/m-p/27998#M862

This gives among other things a short example of how you can use RIB groups to share routes.
Logged

JNCIE-ER #63, JNCIS-M, JNCIS-SEC, JNCIS-FWV, JNCIS-SSL, JNCIA-EX, JNCIA-WX
http://www.hicnetworks.com/
frank3427
Newbie
*
Posts: 43


View Profile
« Reply #9 on: February 09, 2010, 06:54:03 PM »

Aweck, thank you for the information. youo have been very helpful.

i am getting a better understanding of how to configure the SRX.

I have one remaining problem to resolve.

in the following config;
set ike gateway "Trial-SSG" address x.x.x.x id "trial-ssg" Main local-id "ae1-ssg" outgoing-interface "redundant1.1" preshare "j7XgL0jPNU9AVIsKcFCvH2UPZSnQfzmWfg==" sec-level standard

I can not find where one is able to set the local-id and remote-id.

this is what I have so far.

security {
    ike {
        respond-bad-spi 1;
        proposal pre-g2-aes256-sha {
            authentication-method pre-shared-keys;
            dh-group group2;
            authentication-algorithm sha1;
            encryption-algorithm aes-256-cbc;
            lifetime-seconds 28800;
        }
        policy corp-ssg {
            mode main;
            proposal-set standard;
            pre-shared-key ascii-text "$9$dPwY4GUH.PTHqIhreW8aZGiqfCws";
        }
        policy Trial-SSG {
            mode main;
            proposal-set standard;
            pre-shared-key ascii-text "$9$eCyM8xVb2oJU246CuORENdVY4ZPws";
        }
        gateway corp-ssg {
            ike-policy corp-ssg;
            address z.z.z.z;
            local-identity hostname corp-ssg;
            external-interface ge-0/0/0.0;
        }
        gateway Trial-SSG {
            ike-policy Trial-SSG;
            address w.w.w.w;
            external-interface ge-0/0/0.0;
        }
    }
    ipsec {
        proposal g2-esp-eas256-sha {
            protocol esp;
            authentication-algorithm hmac-sha1-96;
            encryption-algorithm aes-256-cbc;
            lifetime-seconds 3600;
        }
        policy policy-corp-ssg {
            proposal-set standard;
        }
        policy policy-Trial-SSG {
            proposal-set standard;
        }
        vpn corp-ssg {
            bind-interface st0.2;
            vpn-monitor {
                optimized;
            }
            ike {
                gateway corp-ssg;
                no-anti-replay;
                proxy-identity {
                    local x.x.x.x/32;
                    remote y.y.y.y/32;
                    service any;
                }
                ipsec-policy policy-corp-ssg;
            }
            establish-tunnels immediately;
        }
        vpn Trial-SSG {
            bind-interface st0.5;
            vpn-monitor {
                optimized;
            }
            ike {
                gateway corp-ssg;
                no-anti-replay;
                proxy-identity {
                    local x.x.x.x/32;
                    remote y.y.y.y/32;
                    service any;
                }
                ipsec-policy policy-Trial-SSG;
            }
            establish-tunnels immediately;
        }
    }
Logged
Pages: [1]
  Print  
 
Jump to:  

Navigation

Donate

Please consider donating if we've saved you time or money. It helps pay for the bandwidth, equipment, and hosting charges to keep this site running

Tools

Submit Article/KB - Do not submit questions here.

Recent

Stats

Members
Stats
  • Total Posts: 38039
  • Total Topics: 9827
  • Online Today: 18
  • Online Ever: 393
  • (August 06, 2008, 07:40:57 AM)
Users Online
Users: 0
Guests: 17
Total: 17
TinyPortal v1.0 beta 4 © Bloc
Powered by MySQL Powered by PHP Powered by SMF 1.1.11 | SMF © 2006-2009, Simple Machines LLC Valid XHTML 1.0! Valid CSS!
Page created in 0.226 seconds with 40 queries.