VPN prevents Apple's continuity camera
While running Big-IP Edge Client, it's common that I can't use the continuity camera feature, which allows an iPhone to be used as external camera to a MacBook. It does not work for Apple's native FaceTime, nor Microsoft Teams. This was working fine with F5Access though. Is this a known issue? Can this be solved or worked around? I'm currently on latest iOS (17.3.1) and macOS (14.3.1), and the feature works well when not connect to the VPN. Thanks for any information or guidance. Kind regards, Henrique238Views0likes2CommentsFiltering messages for remtoe syslog servers
Looking at knowledge articles K1333 and K7342, I was able to get the filters to work in our environment with the following include statement: include " #local0.info send logger entries to remote syslog server filter f_local0.info { facility(local0) and level(info) and match(logger); }; destination d_logger_2 { udp(\"192.168.1.117\" port(11417)); }; log { source(local); filter(f_local0.info); destination(d_logger_2); }; # local logs /var/log/ltm filter f_local { level(info..emerg) and not match(\\logger); }; destination d_ltm { file(/var/log/ltm create_dirs(yes)); udp(\"192.168.100.100\" port(514)); }; log { source(local); filter(f_local); destination(d_ltm); }; " But looking at the different facilities list in K15934495 this will make all the log goto /var/log/ltm and not hit /var/log/gtm, asm, apm, how can I accomplish this goal? Thanks in advanced for your help. Wallace557Views0likes0Comments