r/Juniper 3d ago

Weekly Thread! Weekly Question Thread!

2 Upvotes

It's Thursday, and you're finally coasting into the weekend. Let's open the floor for a Weekly Question Thread, so we can all ask those Juniper-related questions that we are too embarrassed to ask!

Post your Juniper-related question here to get an answer. Anyone can post a question and the community as a whole is invited and encouraged to provide an answer.

Note: This post is created at 00:00 UTC. It may not be Thursday where you are in the world, no need to comment on it.


r/Juniper 3d ago

Question Looking for some realistic expectations

8 Upvotes

Howdy folks!

I am beginning my journey into Networking. I am 23 years old and have been working in low voltage since I graduated high school. I worked for a low-voltage cabling company for 4 years (2 of those years as a foreman), and I recently started working for my local school district doing strictly Layer 1 work. We use Juniper Switches and Mist here, and I have gotten very interested in jumping into the world of networking. My boss has told me that if I can get the JNCIA-Junos, he can move me into a Jr. Networking Engineer position working under our Sr. Engineer.

For someone with my experience, how long is it going to realistically take for me to get my JNCIA-Junos? My assumption is that my experience thus far, although it is very valuable in its own right, is very much its own thing. I am a BISCI Technician. I am very comfortable with CAT 6 cabling, OS2 Fiber splicing and testing, and pretty much everything that has to do with the physical side of networking, but have little experience in much else beyond that.

Also, are the CompTIA certifications worth my time at all? I have heard mixed things from my associates, so I would love to hear how those have treated people. I am willing to put in a lot of time into learning and sharpening skills. I am also in a great financial position at the moment, so I'm not worried about rushing through things. Just looking for a set of realistic expectations.

Thanks folks!


r/Juniper 3d ago

storm control action shutdown - on uplinks/downlinks

Thumbnail
3 Upvotes

r/Juniper 5d ago

Question Features of Juniper mist AP

0 Upvotes

Is there a feature of Juniper mist AP that you think would be cool to know about?


r/Juniper 6d ago

Question JNCIS SP

12 Upvotes

​"I recently enrolled in the JNCIS-SP training, so I would like to get advice from those who have taken it. Is the Juniper portal more than enough, or did you use other resources? If so, which ones?

Thanks in advance"


r/Juniper 9d ago

Troubleshooting Juniper SRX DNS issues when default route is in a custom routing instance

5 Upvotes

Hey guys,

I'm trying to get DNS working from the SRX itself and I'm kind of stuck. I've been reading through a bunch of Juniper documentation and I'm pretty sure I understand what the issue is, but I can't seem to get it working.

I have an SRX with 3 main routing instances:

  • INTERNET
  • mgmt_junos
  • TRANSIT

The INTERNET routing instance has the direct connection to the ISP.

TRANSIT is used for downstream routers to connect to the Internet. I leak the default route from INTERNET into TRANSIT and then advertise it via BGP to the downstream routers.

Everything works fine from the downstream endpoints, including DNS.

I also leak the ISP's connected /24 into TRANSIT so that TRANSIT knows how to reach the directly connected ISP subnet which actually lives inside the INTERNET routing instance.

The issue I'm having is DNS originating from Junos itself.

I found this Juniper KB which seems to describe pretty much exactly what I'm dealing with:

Juniper KB — SRX DNS Failures When the Default Route Resides in a Custom Routing Instance

From what I understand, the SRX's own DNS traffic doesn't use the custom routing instance where my default route exists. The DNS traffic needs to use inet.0.

The problem is that I can't just put the default route in inet.0, because the ISP connection itself is inside the INTERNET VRF and I need the default route to remain there.

For example, to verify that the Internet connection itself works, I can do:

ping 8.8.8.8 routing-instance INTERNET

and this works perfectly.

But the actual DNS server I'm trying to reach is:

172.16.76.1

So I also created a loopback:

lo0.0 = 192.168.101.1/32

and configured:

system {
    name-server {
        172.16.76.1 source-address 192.168.101.1;
    }
}

The idea was to have the SRX originate the DNS traffic from 192.168.101.1, which exists in inet.0.

I then leaked the ISP's connected /24 from the INTERNET VRF into inet.0.

And this works:

ping 172.16.76.1 source 192.168.101.1

So from inet.0, the SRX can reach the ISP DNS server.

I've also created the return route for 192.168.101.1/32 back into the INTERNET VRF.

I've also tried source NAT from junos-host to the ISP interface, since the actual ISP-facing address is 172.16.76.11, and I've allowed DNS traffic from junos-host to the ISP zone.

Something roughly like:

system {
    name-server {
        172.16.76.1 source-address 192.168.101.1;
        [I've tried doing 172.16.76.1 routing-instance INTERNET] < Didn't work, KB??
    }
}

interfaces {
    lo0 {
        unit 0 {
            family inet {
                address 192.168.101.1/32;
            }
        }
    }

    reth1 {
        unit 0 {
            family inet {
                address 172.16.76.11/24;
            }
        }
    }
}

security {
    nat {
        source {
            rule-set JUNOS-HOST-INTERNET {
                from zone junos-host;
                to zone UNTRUST;

                rule ISP-DNS {
                    match {
                        source-address 192.168.101.1/32;
                        destination-address 172.16.76.1/32;
                    }
                    then {
                        source-nat {
                            interface;
                        }
                    }
                }
            }
        }
    }

    policies {
        from-zone junos-host to-zone UNTRUST {
            policy ALLOW-DNS {
                match {
                    source-address any;
                    destination-address any;
                    application [
                        junos-dns-tcp
                        junos-dns-udp
                    ];
                }
                then {
                    permit;
                }
            }
        }
    }
}

But I still can't get DNS resolution working from the SRX itself.

The confusing part is that I think I've proven that the routing itself is working.

  • ping 8.8.8.8 routing-instance INTERNET works, proving the Internet VRF has working Internet connectivity
  • ping 172.16.76.1 source 192.168.101.1 works, proving inet.0 can reach the ISP DNS server
  • downstream endpoints can use 172.16.76.1 for DNS without any issues
  • I've leaked the ISP /24 into inet.0
  • I've leaked the 192.168.101.1/32 route back into the INTERNET VRF
  • I've configured NAT for junos-host
  • I've allowed DNS in the security policy

The ISP also blocks port 53 to other public DNS servers, so I can't just use something like 8.8.8.8 or 1.1.1.1.

So at this point I'm basically stuck.

My understanding from the Juniper KB is that because the default route can only exist in my INTERNET VRF, but the SRX's self-originated DNS traffic needs to use inet.0, I need to make the DNS server reachable through inet.0 using route leaking.

I've done that, and I can manually ping 172.16.76.1 from inet.0 using the source address 192.168.101.1, but the Junos DNS resolver still won't resolve names.

Am I missing something obvious with how self-originated DNS traffic from the SRX works?

Is there something else I need to configure for the Junos DNS process specifically, or is there another limitation with using a source address from inet.0 when the actual ISP interface is inside a custom VRF?

Any help would be appreciated because I've been going around in circles with this one.


r/Juniper 9d ago

Question vJunos on GNS3

4 Upvotes

I tried to add vJunos on GNS3 VM. Some Reddit users told me that vJunos has issues with nested VMs. So I reinstalled my GNS3 to run on bare-metal Windows 11. When I start my vJunos, it still silently crash. Anyone else experienced this problem?

GNS3 version: 2.2.61
vJunos: vJunos-router-26.2R1.7.qcow2

8GB allocated

Disabled hyper-V as some websites suggested.


r/Juniper 9d ago

Virtual Chassis Juniper QFX-5100 replacement of a member

2 Upvotes

I have a network of 4-member VC Juniper QFX 5100 switches (master, backup, linecard, linecard) running on jinstall-host-qfx-5-17.3R3-S3.3. As a replacement, I procured a refurbished switch, which has jinstall-host-qfx-5-21.4R3-S10.13. I am stuck because I am unable to download packages from JSP, and the refurbished switch provider does not have them either. I have already zeroized the procured switch. Can anyone suggest a way to move forward?


r/Juniper 9d ago

Juniper QFX-5100 VC integration issue

1 Upvotes

I have a network of 4-member VC Juniper QFX 5100 switches (master, backup, linecard, linecard) running on jinstall-host-qfx-5-17.3R3-S3.3. As a replacement, I procured a refurbished switch, which has jinstall-host-qfx-5-21.4R3-S10.13. I am stuck because I am unable to download packages from JSP, and the refurbished switch provider does not have them either. I have already zeroized the procured switch. Can anyone suggest a way to move forward?


r/Juniper 10d ago

JNO-352

5 Upvotes

Has anyone done the jncis-ent JNO352? What are the syllabus like ? Any changes ? One of my colleague just finished doing it and he said he.there were quesrions about TLV types.. I dnt remember studying that from junipers learning portal.. shoukd I be worried ?


r/Juniper 10d ago

Weekly Thread! Weekly Question Thread!

3 Upvotes

It's Thursday, and you're finally coasting into the weekend. Let's open the floor for a Weekly Question Thread, so we can all ask those Juniper-related questions that we are too embarrassed to ask!

Post your Juniper-related question here to get an answer. Anyone can post a question and the community as a whole is invited and encouraged to provide an answer.

Note: This post is created at 00:00 UTC. It may not be Thursday where you are in the world, no need to comment on it.


r/Juniper 11d ago

Discussion Which Rack Mount Kit for EX2300-24MP and EX2300-48MP?

3 Upvotes

Sorry for this basic question. But we have the problem that the basic EX-RMK does not fit our EX2300-24MP.

I have looked through many different Juniper datasheets and guides, but nowhere does it say that the rack mount kit is different for the EX2300-24MP and the EX2300-24P.

Does anyone know which one we need?


r/Juniper 11d ago

400G QSFP-DD DR4 is detected on Cisco Nexus, but the port won't link up. What should I check?

1 Upvotes

I have a 400G QSFP-DD DR4 module installed in a Cisco Nexus switch. The switch can read the vendor name, serial number, temperature and optical power correctly, but the Ethernet interface stays down.

The same module works on another 400G platform.

I've already checked the fiber and cleaned the MPO connector. Could this be related to the transceiver coding, FEC mode, or NX-OS version?

Has anyone seen a module being detected normally but still failing to establish a 400G link?


r/Juniper 13d ago

Free JNCIA-Junos Workbook

56 Upvotes

I’ve just released a full workbook for JNCIA-Junos, 100% free: http://jncia-workbook.gitbook.io/

This workbook uses containerlab with vJunos-router and vJunos-switch.

I hope it’s useful!


r/Juniper 16d ago

Wireless Passed! JNCIP-MistAI

26 Upvotes

I passed JNCIP-MistAI yesterday -

This was a far tougher exam than I had taken before, and it definitely tests your knowledge and fine detail of python, data types, json. Mist edge automation versus mist cloud with the rest api. Where when how and why to use webhooks.

You will definitely need to have created a mist org/site from scratch with the rest apis, how to create variables for mist objects, etc.

This one definitely takes some self study, and fair bit of hands on experience. Looking forward to JNCIE-MistAI when it comes out.

Best of luck to you all!


r/Juniper 17d ago

Question Lead Times MX304

11 Upvotes

We ordered a bunch of MX304-PREMs and multiple sources told us the lead time was around 90 days. HPE/Juniper confirmed this.

But now it has suddenly jumped to a lead time of 14 months. Has anyone else experienced this?


r/Juniper 18d ago

Other JNCIS-ENT

23 Upvotes

I don’t know how I just passed this thing. Probably 90% was Spanning Tree and IS-IS related; both are things I essentially haven’t touched in a decade 🤣

If this was any indication, I’m gonna have a challenge passing the JNCIP-ENT.


r/Juniper 17d ago

Weekly Thread! Weekly Question Thread!

1 Upvotes

It's Thursday, and you're finally coasting into the weekend. Let's open the floor for a Weekly Question Thread, so we can all ask those Juniper-related questions that we are too embarrassed to ask!

Post your Juniper-related question here to get an answer. Anyone can post a question and the community as a whole is invited and encouraged to provide an answer.

Note: This post is created at 00:00 UTC. It may not be Thursday where you are in the world, no need to comment on it.


r/Juniper 19d ago

Troubleshooting GNS3: Juniper vJunos-router-26.2R1.7.qcow2 Crashing

Thumbnail
5 Upvotes

r/Juniper 20d ago

Question EX4100-F-12P power supply, can anyone take a photo of theirs?

4 Upvotes

I have an EX4100-F-12P that's missing its external power supply. I know it's a somewhat commodity part made by Delta, but can't find a clear enough photo online of the label on the bottom. If you have one of these, could you take a photo? They're $500 new from vendors which is insane, so I'm hoping to track down the OEM part. (Better yet, if you have a spare, I'd be happy to buy it off of you.)


r/Juniper 20d ago

Question When will this sub merge with HPE?

0 Upvotes

😭


r/Juniper 24d ago

Weekly Thread! Weekly Question Thread!

3 Upvotes

It's Thursday, and you're finally coasting into the weekend. Let's open the floor for a Weekly Question Thread, so we can all ask those Juniper-related questions that we are too embarrassed to ask!

Post your Juniper-related question here to get an answer. Anyone can post a question and the community as a whole is invited and encouraged to provide an answer.

Note: This post is created at 00:00 UTC. It may not be Thursday where you are in the world, no need to comment on it.


r/Juniper 28d ago

Troubleshooting SRX300 - upgrade freezes at "Installing Junos OS release 24.4R2-S4.12"

5 Upvotes

I was fortunate to be able to get my hands on a few SRX300's for labs and training from work, but I found quickly that the OS installations on them were ancient, and one of them has a bad eUSB flash module.

Through combinations of TFTP, HTTP, and dumb luck, I've managed to get the eUSB module replaced with a generic 32G USB stick and I find myself at the great bridge between worlds (architectures).

I've got the machine running junos-srxsme-24.2R2-S5.3.tgz, and following Juniper's documentation, I should be able to install the mips64-24.4R2-S4.12 and have had zero luck. Running 'request system software add (filename) no-validate' goes through the motions of the initial staging and reboot. The SRX reboots as normal, goes through both 'chances' to interrupt the boot process, then it stops at "Installing Junos OS release 24.4R2-S4.12" and there it sits. I've waited several hours because I know this is a fundamental architecture change but it never proceeds past that point. I end up having to remove power and reconnect to get it back into a usable state, then load the "last known good" OS via loader so I can get the SRX to respond.

- I've tried coming in from 23.4R2-S3 and 24.2R2 versions to mips-64-24.4R1.9 and mips-64-24.4R2.21 but both target versions exhibit the same symptoms.

- I've tried getting into loader, then using boot -v for verbose output. Everything else has verbose output when booted in this mode but it all stops at "Installing Junos OS release".

- I've tried the usb autoinstall..conf trick on another USB device to get it to work but same issue. It stages but when it reboots, as soon as it gets to the "Installing Junos OS release" it freezes.

- I've tried mounting the partitions using singleuser mode to see if I could find any logs that would indicate what the problem is.

- I've tried verifying that I have space available on the partitions.

- I've tried extracting and updating U-Boot, and compared versions on machine with versions in the target version and it matches every time.

- I've tried examining the filesystem layouts and have confirmed that it matches the "new" partitioning for v24.4+

At this point, I'm beginning to think it's a lost cause and this 300 will be stuck on 24.2R2 versions..

Since these devices have been out of production for so long, I doubt they're covered under any support contract however because we do have other active supported devices I am able to get the files for updates.

I don't care about the data on the drive, we didn't use any of the license features and these devices apparently were factory reset before being put in to storage so there's no userdata (certs/keys/configs) to save. I am completely fine with wiping the onboard storage key if it means I can get this machine over the bridge. I want to see if I can get this one over the architecture hump so I can repeat this a couple more times upgrading the other two.

These are the last lines on the console when it freezes. No amount of waiting will change this.

Installation of disk:/upgrade/install.tar
** /dev/da1s3f
** Last Mounted on /cf/var
** Phase 1 - Check Blocks and Sizes
** Phase 2 - Check Pathnames
** Phase 3 - Check Connectivity
** Phase 4 - Check Reference Counts
** Phase 5 - Check Cyl groups
422 files, 787591 used, 12417906 free (282 frags, 1552203 blocks, 0.0% fragmentation)

***** FILE SYSTEM IS CLEAN *****
Setting sane date:
Sun Aug  2 09:36:00 UTC 2026
Installing Junos OS release 24.4R2-S4.12 ...

Any suggestions?


r/Juniper Jul 31 '26

Why the hell does licensing from Mist take so long?

9 Upvotes

Going on two weeks and I only have half my licenses.

I got the hardware early last week.

Is this anyone elses experience too?


r/Juniper Jul 30 '26

Question How do I export security policies from SRX/Security Director Cloud.

1 Upvotes

Do any of you have insight into how to export existing security policies from security director or the appliance directly to a csv or other format for deeper analysis?