From ae1776a306323f1152cb98137c85c0a248cfcb6a Mon Sep 17 00:00:00 2001 From: ucar-tmeyer Date: Tue, 23 May 2023 16:55:43 +0000 Subject: [PATCH 1/2] Created specific ldmd.conf files for our separate EDEX systems (main, radar, sat) so we weren't pulling more data than needed --- .../Installer.ldm/patch/etc/ldmd.goesr | 161 +++++++++++++++++ .../Installer.ldm/patch/etc/ldmd.main | 167 ++++++++++++++++++ .../Installer.ldm/patch/etc/ldmd.radar | 150 ++++++++++++++++ 3 files changed, 478 insertions(+) create mode 100644 rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr create mode 100644 rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main create mode 100644 rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr new file mode 100644 index 0000000000..d8ef200731 --- /dev/null +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr @@ -0,0 +1,161 @@ +##### +# $Id: ldmd.conf,v 1.18.12.5 2007/02/16 17:29:47 steve Exp $ +# Sample ldmd.conf for ldm +#### +# +# This is the main configuration file for the LDM server. All lines that start +# with a "#" sign are comments. +# +# To debug an LDM that hangs on start up, run the following from LDM home: +# % bin/rpc.ldmd -vl - -q data/ldm.pq etc/ldmd.conf +# +# If the LDM still hangs, comment out all lines in this file except noted +# allow line entry below, try again. +# +############################################################################### +# WARNING: Pathological Product-ID Patterns +############################################################################### +# +# The REQUEST and ACCEPT entries both have product-ID patterns that are regular +# expressions (RE-s). It is EXTREMELY IMPORTANT that these patterns not have a +# ".*" prefix because: 1) such a prefix accomplishes nothing (i.e., the set of +# possible matches is unaltered by the prefix); and 2) such a prefix causes the +# RE to take MUCH, MUCH LONGER TO EXECUTE (by 3 orders of magnitude in some +# cases). Therefore, DO NOT USE RE-s like +# +# ".*UFPBA" +# +# Instead, simply use +# +# "UFPBA" +# +# The regex(1) utility of this package can be used to examine the efficiency +# of an RE. +# +############################################################################### +# Include Statements +############################################################################### +# +# It's possible to include other files by uncommented-out statements +# like the following: +# +#INCLUDE pathname +#INCLUDE "pathname with spaces" +# +# Non-absolute pathnames are relative to the directory that contains the +# configuration-file with the include statement. +# +############################################################################### +# Exec Entries +############################################################################### +# +# Programs that can share a queue with rpc.ldmd server, these programs +# are started by the "exec" command and are in the same process group. +# +EXEC "pqact -e -k R -s e /awips2/ldm/etc/pqact.conf.priority" +EXEC "edexBridge -vl /awips2/ldm/logs/edexBridge-priority.log -s localhost --key-proj-id R --sem-proj-id e" + +#EXEC "pqact -e -k S -s f /awips2/ldm/etc/pqact.conf" +#EXEC "edexBridge -vl /awips2/ldm/logs/edexBridge-std.log -s cpsbn1-oma.oma.us.ray.com --key-proj-id S --sem-proj-id f" +# +# rtstats uses the LDM to send product latency statistics to the UPC. +# For more info on rtstats please see the man page. +EXEC "rtstats -h rtstats.unidata.ucar.edu" +#EXEC "pqsurf" +# +############################################################################### +# Request Entries +############################################################################### +# +# Request data-products from upstream LDM-s. The syntax is +# +# REQUEST [:] +# +# where: +# Is the union of feedtypes to request. +# Is an extended regular-expression for the product- +# identifiers to match. +# Is the host identifier: either a hostname or IP +# address in "dotted-quad" format. +# Is the (optional) port on to which to connect +# (the square brackets denote an option and should be +# omitted). +# +# If the same feedtype and pattern is requested from multiple hosts, then +# the host of the first such request will be the initial primary source +# of data-products (i.e., data-products will be rapidly sent using the +# HEREIS message) and the other hosts will initially be alternate sources of +# data-products (i.e., data will be sent using the COMMINGSOON and BLKDATA +# messages). The primary host will probably change over time -- depending on +# which host can deliver the data-products most quickly on average. +# +# +# DEFAULT - Satellite Ancillary EDEX +# +REQUEST NIMAGE "CloudAndMoistureImagery" 10.0.0.233 # GOES Stiched Channels (Unidata) +REQUEST NIMAGE "GLMISatSS" 10.0.0.233 # GOES Stitched GLM from NWS ISatSS (Unidata) +REQUEST NIMAGE "CIRA" 10.0.0.233 # GOES CIRA RGBs (Unidata) +REQUEST HDS|NOTHER "IXT.[8-9]9" 10.0.0.233 # GOES Derived Products & Wind (SBN) +REQUEST NOTHER "^IXT[WXY]01" 10.0.0.233 # GOES Derived products-different WMO (COD, CPS, CTP) (SBN) + +#REQUEST NOTHER "^TI[A-W]... KNES" 10.0.0.233 # VIIRS and GOES CMI (SBN) +#REQUEST DIFAX "OR_GLM-L2" 10.0.0.233 # GOES GLM Level 2 (SBN) +#REQUEST UNIWISC|NIMAGE ".*" 10.0.0.233 # AREA/GINI and GOES (NIMAGE feedtype includes DIFAX) +#REQUEST DIFAX "OR_ABI" 10.0.0.233 # GOES ABI netCDF4 (Unidata tiles - not using) +#REQUEST NOTHER "^TI[PRS]... KNES" 10.0.0.233 # GOES ABI gini (not using) + +#REQUEST WMO ".*" initial-secondary-host.another.domain +#REQUEST WMO ".*" another-secondary-host.yet_another.domain:3152 +# +############################################################################### +# Allow Entries +############################################################################### +# +# Give permission to downstream LDM-s to request data-products from your LDM. +# +# ALLOW [ []] +# +# where: +# is the set of feedtypes for this entry +# is an extended regular-expression that specifies +# which hosts are allowed to receive data-products +# whose feedtype is in . +# is an optional extended regular-expression that +# a product-identifier must match in order to be +# sent to the requesting LDM. The default value +# is ".*". +# is an optional extended regular-expression that +# a product-identifier must NOT match in order to +# be sent to the requesting LDM. If this field is +# empty, then such matching will be disabled for +# this entry. +# +# Under no circumstances comment out the next allow entry to localhost +# The LDM will NOT start if the entry is commented-out. +ALLOW ANY ^((localhost|loopback)|(127\.0\.0\.1\.?$)) .* +# +# Give permission to the Unidata Program Center +#ALLOW ANY ^[a-z].*\.unidata\.ucar\.edu\.?$ .* +# +############################################################################### +# Accept Entries +############################################################################### +# ACCEPT: Who can feed us without be requested by a REQUEST entry, currently +# this action is ONLY needed for WSI data +# +# ACCEPT +# +# ACCEPT anything from yourself +# +#ACCEPT ANY ".*" ^((localhost|loopback)|(127\.0\.0\.1\.?$)) +# +# accept from your upstream site +# +# WSI is using ldm4 protocol so the accept is still required +#ACCEPT WSI +# .* +# ^[a-z].*\.uni\.wsicorp\.com$ +# +############################################################################### +# End +############################################################################### diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main new file mode 100644 index 0000000000..4d965fbbb5 --- /dev/null +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main @@ -0,0 +1,167 @@ +##### +# $Id: ldmd.conf,v 1.18.12.5 2007/02/16 17:29:47 steve Exp $ +# Sample ldmd.conf for ldm +#### +# +# This is the main configuration file for the LDM server. All lines that start +# with a "#" sign are comments. +# +# To debug an LDM that hangs on start up, run the following from LDM home: +# % bin/rpc.ldmd -vl - -q data/ldm.pq etc/ldmd.conf +# +# If the LDM still hangs, comment out all lines in this file except noted +# allow line entry below, try again. +# +############################################################################### +# WARNING: Pathological Product-ID Patterns +############################################################################### +# +# The REQUEST and ACCEPT entries both have product-ID patterns that are regular +# expressions (RE-s). It is EXTREMELY IMPORTANT that these patterns not have a +# ".*" prefix because: 1) such a prefix accomplishes nothing (i.e., the set of +# possible matches is unaltered by the prefix); and 2) such a prefix causes the +# RE to take MUCH, MUCH LONGER TO EXECUTE (by 3 orders of magnitude in some +# cases). Therefore, DO NOT USE RE-s like +# +# ".*UFPBA" +# +# Instead, simply use +# +# "UFPBA" +# +# The regex(1) utility of this package can be used to examine the efficiency +# of an RE. +# +############################################################################### +# Include Statements +############################################################################### +# +# It's possible to include other files by uncommented-out statements +# like the following: +# +#INCLUDE pathname +#INCLUDE "pathname with spaces" +# +# Non-absolute pathnames are relative to the directory that contains the +# configuration-file with the include statement. +# +############################################################################### +# Exec Entries +############################################################################### +# +# Programs that can share a queue with rpc.ldmd server, these programs +# are started by the "exec" command and are in the same process group. +# +EXEC "pqact -e -k R -s e /awips2/ldm/etc/pqact.conf.priority" +EXEC "edexBridge -vl /awips2/ldm/logs/edexBridge-priority.log -s localhost --key-proj-id R --sem-proj-id e" + +#EXEC "pqact -e -k S -s f /awips2/ldm/etc/pqact.conf" +#EXEC "edexBridge -vl /awips2/ldm/logs/edexBridge-std.log -s cpsbn1-oma.oma.us.ray.com --key-proj-id S --sem-proj-id f" +# +# rtstats uses the LDM to send product latency statistics to the UPC. +# For more info on rtstats please see the man page. +EXEC "rtstats -h rtstats.unidata.ucar.edu" +#EXEC "pqsurf" +# +############################################################################### +# Request Entries +############################################################################### +# +# Request data-products from upstream LDM-s. The syntax is +# +# REQUEST [:] +# +# where: +# Is the union of feedtypes to request. +# Is an extended regular-expression for the product- +# identifiers to match. +# Is the host identifier: either a hostname or IP +# address in "dotted-quad" format. +# Is the (optional) port on to which to connect +# (the square brackets denote an option and should be +# omitted). +# +# If the same feedtype and pattern is requested from multiple hosts, then +# the host of the first such request will be the initial primary source +# of data-products (i.e., data-products will be rapidly sent using the +# HEREIS message) and the other hosts will initially be alternate sources of +# data-products (i.e., data will be sent using the COMMINGSOON and BLKDATA +# messages). The primary host will probably change over time -- depending on +# which host can deliver the data-products most quickly on average. +# +# DEFAULT +#REQUEST LIGHTNING ".*" 10.0.0.233 # USPLN +#REQUEST LIGHTNING ".*" striker.atmos.albany.edu # NLDN +REQUEST FNEXRAD ".*" 10.0.0.233 # MRMS - Unidata feed via NCEP +REQUEST WMO ".*" 10.0.0.233 # WMO Feedtype includes HDS|IDS|DDPLUS +REQUEST UNIWISC|NIMAGE ".*" 10.0.0.233 # AREA/GINI and GOES (NIMAGE feedtype includes DIFAX) +REQUEST NOTHER "^TI[A-Q]... KNES" 10.0.0.233 # VIIRS via SBN +REQUEST NGRID ".*" 10.0.0.233 +#REQUEST HDS ".*" 10.0.0.233 # Duplicate +#REQUEST CMC ".*" 10.0.0.233 # CMC is an alias for GEM +#REQUEST FNMOC ".*" 10.0.0.233 +REQUEST CONDUIT "nam" 10.0.0.233 # NAM12 +REQUEST CONDUIT "pgrb2" 10.0.0.233 # GFS +#REQUEST CONDUIT "nwstg" 10.0.0.233 # NDFD +#REQUEST CONDUIT "awp252" 10.0.0.233 # RAP20 +#REQUEST FSL2 "HRRR" 10.0.0.233 # HRRRX sub-hourly +REQUEST EXP "WwWind" 10.0.0.233 # ESPL/PSD Profilers +#REQUEST NGRID "^YAU[CDLMPQS]" 10.0.0.233 # MRMS-NOAAPort +REQUEST FSL2 "HRRR\.Smoke" 10.0.0.233 # HRRR Smoke + +# +#REQUEST WMO ".*" initial-secondary-host.another.domain +#REQUEST WMO ".*" another-secondary-host.yet_another.domain:3152 +# +############################################################################### +# Allow Entries +############################################################################### +# +# Give permission to downstream LDM-s to request data-products from your LDM. +# +# ALLOW [ []] +# +# where: +# is the set of feedtypes for this entry +# is an extended regular-expression that specifies +# which hosts are allowed to receive data-products +# whose feedtype is in . +# is an optional extended regular-expression that +# a product-identifier must match in order to be +# sent to the requesting LDM. The default value +# is ".*". +# is an optional extended regular-expression that +# a product-identifier must NOT match in order to +# be sent to the requesting LDM. If this field is +# empty, then such matching will be disabled for +# this entry. +# +# Under no circumstances comment out the next allow entry to localhost +# The LDM will NOT start if the entry is commented-out. +ALLOW ANY ^((localhost|loopback)|(127\.0\.0\.1\.?$)) .* +# +# Give permission to the Unidata Program Center +#ALLOW ANY ^[a-z].*\.unidata\.ucar\.edu\.?$ .* +# +############################################################################### +# Accept Entries +############################################################################### +# ACCEPT: Who can feed us without be requested by a REQUEST entry, currently +# this action is ONLY needed for WSI data +# +# ACCEPT +# +# ACCEPT anything from yourself +# +#ACCEPT ANY ".*" ^((localhost|loopback)|(127\.0\.0\.1\.?$)) +# +# accept from your upstream site +# +# WSI is using ldm4 protocol so the accept is still required +#ACCEPT WSI +# .* +# ^[a-z].*\.uni\.wsicorp\.com$ +# +############################################################################### +# End +############################################################################### diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar new file mode 100644 index 0000000000..44865785ce --- /dev/null +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar @@ -0,0 +1,150 @@ +##### +# $Id: ldmd.conf,v 1.18.12.5 2007/02/16 17:29:47 steve Exp $ +# Sample ldmd.conf for ldm +#### +# +# This is the main configuration file for the LDM server. All lines that start +# with a "#" sign are comments. +# +# To debug an LDM that hangs on start up, run the following from LDM home: +# % bin/rpc.ldmd -vl - -q data/ldm.pq etc/ldmd.conf +# +# If the LDM still hangs, comment out all lines in this file except noted +# allow line entry below, try again. +# +############################################################################### +# WARNING: Pathological Product-ID Patterns +############################################################################### +# +# The REQUEST and ACCEPT entries both have product-ID patterns that are regular +# expressions (RE-s). It is EXTREMELY IMPORTANT that these patterns not have a +# ".*" prefix because: 1) such a prefix accomplishes nothing (i.e., the set of +# possible matches is unaltered by the prefix); and 2) such a prefix causes the +# RE to take MUCH, MUCH LONGER TO EXECUTE (by 3 orders of magnitude in some +# cases). Therefore, DO NOT USE RE-s like +# +# ".*UFPBA" +# +# Instead, simply use +# +# "UFPBA" +# +# The regex(1) utility of this package can be used to examine the efficiency +# of an RE. +# +############################################################################### +# Include Statements +############################################################################### +# +# It's possible to include other files by uncommented-out statements +# like the following: +# +#INCLUDE pathname +#INCLUDE "pathname with spaces" +# +# Non-absolute pathnames are relative to the directory that contains the +# configuration-file with the include statement. +# +############################################################################### +# Exec Entries +############################################################################### +# +# Programs that can share a queue with rpc.ldmd server, these programs +# are started by the "exec" command and are in the same process group. +# +EXEC "pqact -e -k R -s e /awips2/ldm/etc/pqact.conf.priority" +EXEC "edexBridge -vl /awips2/ldm/logs/edexBridge-priority.log -s localhost --key-proj-id R --sem-proj-id e" + +#EXEC "pqact -e -k S -s f /awips2/ldm/etc/pqact.conf" +#EXEC "edexBridge -vl /awips2/ldm/logs/edexBridge-std.log -s cpsbn1-oma.oma.us.ray.com --key-proj-id S --sem-proj-id f" +# +# rtstats uses the LDM to send product latency statistics to the UPC. +# For more info on rtstats please see the man page. +EXEC "rtstats -h rtstats.unidata.ucar.edu" +#EXEC "pqsurf" +# +############################################################################### +# Request Entries +############################################################################### +# +# Request data-products from upstream LDM-s. The syntax is +# +# REQUEST [:] +# +# where: +# Is the union of feedtypes to request. +# Is an extended regular-expression for the product- +# identifiers to match. +# Is the host identifier: either a hostname or IP +# address in "dotted-quad" format. +# Is the (optional) port on to which to connect +# (the square brackets denote an option and should be +# omitted). +# +# If the same feedtype and pattern is requested from multiple hosts, then +# the host of the first such request will be the initial primary source +# of data-products (i.e., data-products will be rapidly sent using the +# HEREIS message) and the other hosts will initially be alternate sources of +# data-products (i.e., data will be sent using the COMMINGSOON and BLKDATA +# messages). The primary host will probably change over time -- depending on +# which host can deliver the data-products most quickly on average. +# +# DEFAULT Radar Ancillary EDEX +REQUEST NEXRAD3 ".*" 10.0.0.233 # Radar Level3 +REQUEST HDS "^SDUS6.*" 10.0.0.233 # Radar Level3 - specific files +# +#REQUEST WMO ".*" initial-secondary-host.another.domain +#REQUEST WMO ".*" another-secondary-host.yet_another.domain:3152 +# +############################################################################### +# Allow Entries +############################################################################### +# +# Give permission to downstream LDM-s to request data-products from your LDM. +# +# ALLOW [ []] +# +# where: +# is the set of feedtypes for this entry +# is an extended regular-expression that specifies +# which hosts are allowed to receive data-products +# whose feedtype is in . +# is an optional extended regular-expression that +# a product-identifier must match in order to be +# sent to the requesting LDM. The default value +# is ".*". +# is an optional extended regular-expression that +# a product-identifier must NOT match in order to +# be sent to the requesting LDM. If this field is +# empty, then such matching will be disabled for +# this entry. +# +# Under no circumstances comment out the next allow entry to localhost +# The LDM will NOT start if the entry is commented-out. +ALLOW ANY ^((localhost|loopback)|(127\.0\.0\.1\.?$)) .* +# +# Give permission to the Unidata Program Center +#ALLOW ANY ^[a-z].*\.unidata\.ucar\.edu\.?$ .* +# +############################################################################### +# Accept Entries +############################################################################### +# ACCEPT: Who can feed us without be requested by a REQUEST entry, currently +# this action is ONLY needed for WSI data +# +# ACCEPT +# +# ACCEPT anything from yourself +# +#ACCEPT ANY ".*" ^((localhost|loopback)|(127\.0\.0\.1\.?$)) +# +# accept from your upstream site +# +# WSI is using ldm4 protocol so the accept is still required +#ACCEPT WSI +# .* +# ^[a-z].*\.uni\.wsicorp\.com$ +# +############################################################################### +# End +############################################################################### From 4c562ba78b3d65b6fdac947119cdddec4081fc7a Mon Sep 17 00:00:00 2001 From: ucar-tmeyer Date: Tue, 23 May 2023 17:16:44 +0000 Subject: [PATCH 2/2] Updated request to idd instead of internal idd-relay --- .../Installer.ldm/patch/etc/ldmd.goesr | 20 +++++------ .../Installer.ldm/patch/etc/ldmd.main | 34 +++++++++---------- .../Installer.ldm/patch/etc/ldmd.radar | 4 +-- 3 files changed, 29 insertions(+), 29 deletions(-) diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr index d8ef200731..1b428c276f 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.goesr @@ -92,17 +92,17 @@ EXEC "rtstats -h rtstats.unidata.ucar.edu" # # DEFAULT - Satellite Ancillary EDEX # -REQUEST NIMAGE "CloudAndMoistureImagery" 10.0.0.233 # GOES Stiched Channels (Unidata) -REQUEST NIMAGE "GLMISatSS" 10.0.0.233 # GOES Stitched GLM from NWS ISatSS (Unidata) -REQUEST NIMAGE "CIRA" 10.0.0.233 # GOES CIRA RGBs (Unidata) -REQUEST HDS|NOTHER "IXT.[8-9]9" 10.0.0.233 # GOES Derived Products & Wind (SBN) -REQUEST NOTHER "^IXT[WXY]01" 10.0.0.233 # GOES Derived products-different WMO (COD, CPS, CTP) (SBN) +REQUEST NIMAGE "CloudAndMoistureImagery" idd.unidata.ucar.edu # GOES Stiched Channels (Unidata) +REQUEST NIMAGE "GLMISatSS" idd.unidata.ucar.edu # GOES Stitched GLM from NWS ISatSS (Unidata) +REQUEST NIMAGE "CIRA" idd.unidata.ucar.edu # GOES CIRA RGBs (Unidata) +REQUEST HDS|NOTHER "IXT.[8-9]9" idd.unidata.ucar.edu # GOES Derived Products & Wind (SBN) +REQUEST NOTHER "^IXT[WXY]01" idd.unidata.ucar.edu # GOES Derived products-different WMO (COD, CPS, CTP) (SBN) -#REQUEST NOTHER "^TI[A-W]... KNES" 10.0.0.233 # VIIRS and GOES CMI (SBN) -#REQUEST DIFAX "OR_GLM-L2" 10.0.0.233 # GOES GLM Level 2 (SBN) -#REQUEST UNIWISC|NIMAGE ".*" 10.0.0.233 # AREA/GINI and GOES (NIMAGE feedtype includes DIFAX) -#REQUEST DIFAX "OR_ABI" 10.0.0.233 # GOES ABI netCDF4 (Unidata tiles - not using) -#REQUEST NOTHER "^TI[PRS]... KNES" 10.0.0.233 # GOES ABI gini (not using) +#REQUEST NOTHER "^TI[A-W]... KNES" idd.unidata.ucar.edu # VIIRS and GOES CMI (SBN) +#REQUEST DIFAX "OR_GLM-L2" idd.unidata.ucar.edu # GOES GLM Level 2 (SBN) +#REQUEST UNIWISC|NIMAGE ".*" idd.unidata.ucar.edu # AREA/GINI and GOES (NIMAGE feedtype includes DIFAX) +#REQUEST DIFAX "OR_ABI" idd.unidata.ucar.edu # GOES ABI netCDF4 (Unidata tiles - not using) +#REQUEST NOTHER "^TI[PRS]... KNES" idd.unidata.ucar.edu # GOES ABI gini (not using) #REQUEST WMO ".*" initial-secondary-host.another.domain #REQUEST WMO ".*" another-secondary-host.yet_another.domain:3152 diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main index 4d965fbbb5..7683394ab3 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.main @@ -90,24 +90,24 @@ EXEC "rtstats -h rtstats.unidata.ucar.edu" # which host can deliver the data-products most quickly on average. # # DEFAULT -#REQUEST LIGHTNING ".*" 10.0.0.233 # USPLN +#REQUEST LIGHTNING ".*" idd.unidata.ucar.edu # USPLN #REQUEST LIGHTNING ".*" striker.atmos.albany.edu # NLDN -REQUEST FNEXRAD ".*" 10.0.0.233 # MRMS - Unidata feed via NCEP -REQUEST WMO ".*" 10.0.0.233 # WMO Feedtype includes HDS|IDS|DDPLUS -REQUEST UNIWISC|NIMAGE ".*" 10.0.0.233 # AREA/GINI and GOES (NIMAGE feedtype includes DIFAX) -REQUEST NOTHER "^TI[A-Q]... KNES" 10.0.0.233 # VIIRS via SBN -REQUEST NGRID ".*" 10.0.0.233 -#REQUEST HDS ".*" 10.0.0.233 # Duplicate -#REQUEST CMC ".*" 10.0.0.233 # CMC is an alias for GEM -#REQUEST FNMOC ".*" 10.0.0.233 -REQUEST CONDUIT "nam" 10.0.0.233 # NAM12 -REQUEST CONDUIT "pgrb2" 10.0.0.233 # GFS -#REQUEST CONDUIT "nwstg" 10.0.0.233 # NDFD -#REQUEST CONDUIT "awp252" 10.0.0.233 # RAP20 -#REQUEST FSL2 "HRRR" 10.0.0.233 # HRRRX sub-hourly -REQUEST EXP "WwWind" 10.0.0.233 # ESPL/PSD Profilers -#REQUEST NGRID "^YAU[CDLMPQS]" 10.0.0.233 # MRMS-NOAAPort -REQUEST FSL2 "HRRR\.Smoke" 10.0.0.233 # HRRR Smoke +REQUEST FNEXRAD ".*" idd.unidata.ucar.edu # MRMS - Unidata feed via NCEP +REQUEST WMO ".*" idd.unidata.ucar.edu # WMO Feedtype includes HDS|IDS|DDPLUS +REQUEST UNIWISC|NIMAGE ".*" idd.unidata.ucar.edu # AREA/GINI and GOES (NIMAGE feedtype includes DIFAX) +REQUEST NOTHER "^TI[A-Q]... KNES" idd.unidata.ucar.edu # VIIRS via SBN +REQUEST NGRID ".*" idd.unidata.ucar.edu +#REQUEST HDS ".*" idd.unidata.ucar.edu # Duplicate +#REQUEST CMC ".*" idd.unidata.ucar.edu # CMC is an alias for GEM +#REQUEST FNMOC ".*" idd.unidata.ucar.edu +REQUEST CONDUIT "nam" idd.unidata.ucar.edu # NAM12 +REQUEST CONDUIT "pgrb2" idd.unidata.ucar.edu # GFS +#REQUEST CONDUIT "nwstg" idd.unidata.ucar.edu # NDFD +#REQUEST CONDUIT "awp252" idd.unidata.ucar.edu # RAP20 +#REQUEST FSL2 "HRRR" idd.unidata.ucar.edu # HRRRX sub-hourly +REQUEST EXP "WwWind" idd.unidata.ucar.edu # ESPL/PSD Profilers +#REQUEST NGRID "^YAU[CDLMPQS]" idd.unidata.ucar.edu # MRMS-NOAAPort +REQUEST FSL2 "HRRR\.Smoke" idd.unidata.ucar.edu # HRRR Smoke # #REQUEST WMO ".*" initial-secondary-host.another.domain diff --git a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar index 44865785ce..d042a80548 100644 --- a/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar +++ b/rpms/awips2.upc/Installer.ldm/patch/etc/ldmd.radar @@ -90,8 +90,8 @@ EXEC "rtstats -h rtstats.unidata.ucar.edu" # which host can deliver the data-products most quickly on average. # # DEFAULT Radar Ancillary EDEX -REQUEST NEXRAD3 ".*" 10.0.0.233 # Radar Level3 -REQUEST HDS "^SDUS6.*" 10.0.0.233 # Radar Level3 - specific files +REQUEST NEXRAD3 ".*" idd.unidata.ucar.edu # Radar Level3 +REQUEST HDS "^SDUS6.*" idd.unidata.ucar.edu # Radar Level3 - specific files # #REQUEST WMO ".*" initial-secondary-host.another.domain #REQUEST WMO ".*" another-secondary-host.yet_another.domain:3152