Closed GoogleCodeExporter closed 9 years ago
I'll be taking a look at this shortly and see how best to implement a fix. It
is possible that nesting application groups within other application groups
will also run into the same limitation, as well as possible limitation on apps
allowed per term. Need to investigate these all further.
In the meantime, an issue being opened with Juniper TAC by an colleague to see
if this limit is platform specific, related to licensing, and if they can
increase this limitation.
Original comment by watson@google.com
on 25 Jun 2012 at 9:42
FYI, what I would suggest is basically introducing the usage application-set.
One set per term I assume.
For the following example, say this is the definition:
Policy:
term http-access {
destination-port:: HTTP
action:: accept
}
SERVICES.svc:
HTTP = 80/tcp
443/tcp
So instead of what is produced right now in the applications section:
application http-access-app {
term t1 protocol tcp destination-port 80;
term t2 protocol tcp destination-port 443;
}
I suggest generating output like this:
application-set http-access-app-set {
application http-access-app1;
application http-access-app2;
}
application http-access-app1 {
term t1 protocol tcp destination-port 80;
}
application http-access-app2 {
term t1 protocol tcp destination-port 443;
}
Original comment by m...@google.com
on 2 Jul 2012 at 9:57
This should be fixed now with r200:
http://code.google.com/p/capirca/source/detail?r=200
Original comment by m...@google.com
on 17 Aug 2012 at 8:53
Original issue reported on code.google.com by
m...@google.com
on 25 Jun 2012 at 7:48