Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
JoeGoerlich
Active Contributor
From my experience the RFC Gateway security is for many SAP Administrators still a not well understood topic. As a result many SAP systems lack for example of proper defined ACLs to prevent malicious use.

After an attack vector was published in the talk "SAP Gateway to Heaven" from Mathieu Geli and Dmitry Chastuhin at OPDCA 2019 Dubai (https://github.com/gelim/sap_ms) the RFC Gateway security is even more important than ever. This publication got considerable public attention as 10KBLAZE.

With this blogpost series i try to give a comprehensive explanation of the RFC Gateway Security:

Part 1: General questions about the RFC Gateway and RFC Gateway security
Part 2: reginfo ACL in detail
Part 3: secinfo ACL in detail
Part 4: prxyinfo ACL in detail
Part 5: ACLs and the RFC Gateway security
Part 6: RFC Gateway Logging
Part 7: Secure communication
Part 8: OS command execution using sapxpg
Part 9: enhanced security for sapxpg

Updates:

2023-03-21: Added Part 9: enhanced security for sapxpg2023-02-28: Added Part 8: OS command execution using sapxpg
2021-11-10: Added Part 7: Secure communication
2021-03-17: Rephrased some sections to be more precise.





ACLs and RFC Gateway security


In the previous parts we had a look at the different ACLs and the scenarios in which they are applied. Maybe some security concerns regarding the one or the other scenario raised already in you head. So let's shine a light on security.

Please make sure you have read part 1 - 4 of this series.

Which rules are activated by default?


The default rules of reginfo and secinfo ACL (as mentioned in part 2 and part 3) are enabled if either profile parameter 'gw/acl_mode = 1' is set or if 'gw/reg_no_conn_info' includes the value '16' in its bit mask, and if no custom ACLs are defined.


If these profile parameters are not set the default rules would be the following "allow all" rules:


reginfo: P TP=*
secinfo: P TP=* USER=* USER-HOST=* HOST=*


The default rule in prxyinfo ACL (as mentioned in part 4) is enabled if no custom ACL is defined. This is an "allow all" rule. At time of writing this can not be influenced by any profile parameter.



What about the syntax of the reginfo, secinfo ACL?


The syntax used in the reginfo, secinfo and prxyinfo changed over time. It is strongly recommended to use syntax of Version 2, indicated by #VERSION=2in the first line of the files.


Furthermore the means of some syntax and security checks have been changed or even fixed over time. To use all capabilities it is necessary to set the profile parameter 'gw/reg_no_conn_info = 255'.




Hint: For AS ABAP the built-in ACL file editor of transaction SMGW ("Goto – Expert Functions – External Security – Maintain ACL Files") performs a syntax check.



What is the keyword 'local' about?


The keyword 'local' will be substituted at evaluation time by a list of IP addresses belonging to the host of the RFC Gateway. This also includes the loopback address 127.0.0.1 as well as its IPv6 equivalent "::1".



What is the keyword 'internal' about?


The keyword 'internal' will be substituted at evaluation time by a list of hostnames of application servers in status 'ACTIVE' which is periodically sent to all connected RFC Gateways. This list is gathered from the Message Server every 5 minutes by the report 'RSMONGWY_SEND_NILIST'. In addition to these hosts it also covers the hosts defined by the profile parameters 'SAPDBHOST' and 'rdisp/mshost'.


Since this keyword is relaying on a kernel feature as well as an ABAP report it is not available in the internal RFC Gateway of SAP NW AS Java.
A Stand-alone Gateway could utilise this keyword only after it was attached to the Message Server of AS ABAP and the profile parameter 'gw/activate_keyword_internal' was set.


To prevent the list of application servers from tampering we have to take care which servers are allowed to register themselves at the Message Server as an application server.
The message server port which accepts registrations is defined by profile parameter 'rdisp/msserv_internal'.


Limiting access to this port would be one mitigation. Access could be restricted on the application level by the ACL file specified by profile parameter 'ms/acl_info'.


In addition to proper network separation, access to all message server ports can be controlled on network level by the ACL file specified by profile parameter 'ms/acl_file' or more specific to the internal port by the ACL file specified by profile parameter 'ms/acl_file_int'.


Another mitigation would be to switch the internal server communication to TLS using a so-called systemPKI by setting the profile parameter 'system/secure_communication = ON'. This makes sure application servers must have a trust relation in order to take part of the internal server communication. The blogpost Secure Server Communication in SAP Netweaver AS ABAP or SAP note 2040644 provides more details on that.


A combination of these mitigations should be considered in general.



What to consider in general when maintaining reginfo, secinfo or prxyinfo ACL?


When editing these ACLs we always have to think from the perspective of each RFC Gateway to which the ACLs are applied to.


We should pretend as if we would maintain the ACLs of a stand-alone RFC Gateway. Remember the AS ABAP or AS Java is just another RFC client to the RFC Gateway.


For AS ABAP the ACLs should be maintained using the built-in ACL file editor of transaction SMGW ("Goto – Expert Functions – External Security – Maintain ACL Files").




Hint: Besides the syntax check, it also provides a feature supporting rule creation by predicting rules out of an automated gateway log analysis.



Should a custom reginfo or secinfo ACL contain a "deny all" rule at the end?


While it was recommended by some resources to define a "deny all" rule at the end of reginfo, secinfo ACL this is not necessary. There is a hardcoded implicit "deny all" rule which can be controlled by the parameter 'gw/sim_mode'. The simulation mode is a feature which could help to initially create the ACLs. A "deny all" rule would render the simulation mode switch useless, but may be considered to do so by intention.



Is the default rule of reginfo ACL safe for use?


As we learned in part 2 SAP introduced the following internal rule in the in the reginfo ACL:


P TP=* HOST=internal,local ACCESS=internal,local CANCEL=internal,local


While it is common and recommended by many resources to define this rule in a custom reginfo ACL as the last rule, from a security perspective it is not an optimal approach.


With this rule applied any RFC enabled program on any of the servers covered by the keyword 'internal' is able to register itself at the RFC Gateway independent from which user started the corresponding executable on OS level (again refer to 10KBLAZE). With this rule applied you should properly secure access to the OS (e.g., verify if all existing OS users are indeed necessary, SSH with public key instead of user+pw).


In an ideal world each program alias of the relevant 'Registered Server Programs' would be listed in a separate rule, even for registering program aliases from one of the hosts of 'internal'.



What to consider especially when maintaining custom rules in the reginfo ACL?


All of our custom rules should bee „allow“-rules.


Every attribute should be maintained as specific as possible.


The wildcard "*" should be strongly avoided. In case of 'TP Name' this may not be applicable in some scenarios. In these cases the program alias is generated with a random string. To mitigate this we should look if it is generated using a fixed prefix and use this as a pattern with an ending wildcard in order to reduce the effective values, e.g., TP=Trex_<SID>_*, which would still be better than TP=*`.




Please note: The wildcard '*' is per se supported at the end of a string only.



Is the default rule of secinfo ACL safe for use?


As we learned in part 3 SAP introduced the following internal rule in the in the secinfo ACL:
P USER=* USER-HOST=internal,local HOST=internal,local TP=*


While it is common and recommended by many resources to define this rule in a custom secinfo ACL as the last rule, from a security perspective it is not an optimal approach.


With this rule applied for example any user with permissions to create or edit TCP/IP connections in transaction SM59 would be able to call any executable or script at OS level on the RFC Gateway server in the context of the user running the RFC gateway process.


Depending on the settings of the reginfo ACL a malicious user could also misuse this permissions to start a program which registers itself on the local RFC Gateway, e.g.,:



Even if we learned starting a program using the RFC Gateway is an interactive task and the call will timeout if the program itself is not RFC enabled, for eample:



the program still will be started and will be running on the OS level after this error was shown, and furthermore it could successfully register itself at the local RFC Gateway:



There are also other scenarios imaginable in which no previous access along with critical permission in SAP would be necessary to execute commands via the RFC Gateway. In the slides of the talk "SAP Gateway to Heaven" for example a scenario is outlined in which a SAProuter installed on the same server as the RFC Gateway could be utilized to proxy a connection to 'local'.


Benign programs to be started by the local RFC Gateway of a SAP NetWeaver AS ABAP are typically part of the SAP Kernel and located in the $(DIR_EXE) of the application server. Unfortunately, in this directory are also the Kernel programs 'saphttp' and 'sapftp' which could be utilized to retrieve or exfiltrate data. So TP=/usr/sap/<SAPSID>/<Instance>/exe/* or even TP=/usr/sap/<SAPSID>/* might not be a comprehensive solution for high security systems, but in combination with „deny“-rules for specific programs in this directory, still better than the default rules.


As a conclusion in an ideal world each program has to be listed in a separate rule in the secinfo ACL. Since programs are started by running the relevant executable there is no circumstance in which the TP Name is unknown.



What to consider especially when maintaining custom rules in the secinfo ACL?


Every attribute should be maintained as specific as possible.


The wildcard '*' should not be used at all.



Is the default rule of prxyinfo ACL safe for use?


As we learned in part 4 SAP introduced the following internal rule in the in the prxyinfo ACL:
P SOURCE=* DEST=*


It is common and recommended by many resources to define the following rule in a custom prxyinfo ACL:


P SOURCE=local,internal DEST=*


With this, all requests from the local system, as well as all application servers of the same system, will be proxied by the RFC Gateway to any destination or end point.


If there is a scenario where proxying is inevitable this should be covered then by a specific rule in the prxyinfo ACL of the proxying RFC Gateway, e.g.,:


P SOURCE=<hosts-SRC> DEST=<hosts-TGT>


P SOURCE=<RFC-clients> DEST=internal,local


Since proxying to circumvent network level restrictions is a bad practice - or even very dangerous if unnoticed - the following rule should be defined as last rule in a custom prxyinfo:


D SOURCE=* DEST=*



What to consider when maintaining custom rules in the prxyinfo ACL?


All of our custom rules should bee „allow“-rules.


Every attribute should be maintained as specific as possible.


The wildcard '*' should be avoided wherever possible.


A custom allow rule has to be maintained on the proxying RFC Gateway only.




Please note: The proxying RFC Gateway will additionally check its reginfo and secinfo ACL if the request is permitted.



What about starting executables on remote servers?


If we do not have any scenarios which relay on this use-case we are should disable this functionality to prevent from misuse by setting profile parameter gw/rem_start = DISABLED otherwise we should consider to enforce the usage of SSH by setting gw/rem_start = SSH_SHELL.


 




<--Previous

Next -->

3 Comments
Antonio_leites
Participant
0 Kudos
Very good post.
I think you have a typo. It seems to me that the parameter is gw/acl_file instead of ms/acl_file.

regards,

Antonio
isaias_freitas
Advisor
Advisor
0 Kudos
Hello Antonio,

No, it is not a typo :-).

That part is talking about securing the connection to the Message Server, which will prevent tampering with they keyword "internal", which can be used on the RFC Gateway security ACL files.

If someone can register a "rogue" server in the Message Server, such rogue server will be included in the keyword "internal" and this could open a security hole.

Regards,

Isaías
KyleMarkBonello
Discoverer
0 Kudos

Good Afternoon everyone,

so in short, i am trying to fix an SLD configuration from my previous colleague who no longer works here. I have only been with this company for 3 months.

SLDCHECK is green and working
LMDB is also green and working.

i have noticed that the sld is not sending data from my client systems to my solman. error is im sm21
i have checked and came to a conclusion that the secinfo, reginfo and prxyinfo were set up correctly.
so i have researched on how to set them up and i did. but i am getting this dump when running the sm59 sld_uc

KyleMarkBonello_0-1707300207646.png

and this in the system
gew-sap11:r3tadm 57> cat /usr/sap/R3T/D00/work/gw_log-2024-02-07
P Wed Feb 07 2024 00:00:26:744 log file opened
X Wed Feb 07 2024 06:26:59:403 gateway stopped, pid=22161
P Wed Feb 07 2024 06:26:59:403 log file closed
P Wed Feb 07 2024 06:30:28:959 log file reopened
P Wed Feb 07 2024 06:30:28:959 initial gw/logging ACTION=Ss LOGFILE=gw_log-%y-%m-%d SWITCHTF=day MAXSIZEKB=100
X Wed Feb 07 2024 06:30:28:959 gateway started, pid=15311
P Wed Feb 07 2024 06:30:28:959 gw/logging = ACTION=Ss LOGFILE=gw_log-%y-%m-%d SWITCHTF=day MAXSIZEKB=100
S Wed Feb 07 2024 06:30:28:959 simulation mode deactivated
S Wed Feb 07 2024 06:30:28:959 gw/reg_no_conn_info: 1
S Wed Feb 07 2024 06:30:29:561 (re)load secinfo file /usr/sap/R3T/SYS/global/secinfo, version=2 (17 lines, mode=0)
S Wed Feb 07 2024 06:30:29:561 P TP=* USER=* USER-HOST=local HOST=local
S Wed Feb 07 2024 06:30:29:561 P TP=* USER=* USER-HOST=internal HOST=internal
S Wed Feb 07 2024 06:30:29:561 P USER=* TP=* HOST=local USER-HOST=*
S Wed Feb 07 2024 06:30:29:561 P USER=* TP=* HOST=internal USER-HOST=*
S Wed Feb 07 2024 06:30:29:561 (re)load reginfo file /usr/sap/R3T/D00/data/reginfo, version=2 (33 lines, mode=0)
S Wed Feb 07 2024 06:30:29:561 P TP=Trex* HOST=* CANCEL=* ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=SLD_NUC HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=SLD_NUC HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=IGS.CDM HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=IGS.CDM HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=sapfallback HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=sapfallback HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=SLD_UC HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=SLD_UC HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=TRILLIUM.CONNECTOR HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=TRILLIUM.CONNECTOR HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=VERTEX_M_300 HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=VERTEX_M_300 HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=Trex_CDM_20121009111814 HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=Trex_CDM_20121009111814 HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=SAPphone HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=SAPphone HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=IGS.CDM HOST=127.0.0.1 CANCEL=127.0.0.1 ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=VERTEX_M_300 HOST=10.226.1.132 CANCEL=10.226.1.132 ACCESS=*
S Wed Feb 07 2024 06:30:29:561 P TP=* HOST=local CANCEL=local ACCESS=local
S Wed Feb 07 2024 06:30:29:561 P TP=* HOST=internal CANCEL=internal ACCESS=internal
S Wed Feb 07 2024 06:30:29:561 prxyinfo file /usr/sap/R3T/D00/data/prxyinfo not found, use internal default
S Wed Feb 07 2024 06:30:29:561 P DEST=* SOURCE=*
S Wed Feb 07 2024 06:31:18:844 reginfo denied server: TP=BC_SRV_02, HOST=GEW-APP43.gew.dom (195.94.71.182)
S Wed Feb 07 2024 06:31:34:816 reginfo denied server: TP=BC_SRV_02, HOST=GEW-APP42.gew.dom (195.94.71.182) 1 times
S Wed Feb 07 2024 06:31:34:816 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 06:33:51:887 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 2 times
S Wed Feb 07 2024 06:33:51:887 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 06:34:34:289 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 06:34:34:289 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 06:38:51:858 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 06:38:51:858 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 06:39:34:771 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 06:39:34:771 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 06:43:52:771 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 06:43:52:771 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 06:44:34:371 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 06:44:34:371 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 06:48:53:085 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 06:48:53:085 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 06:49:34:960 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 06:49:34:960 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 06:53:52:147 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 06:53:52:147 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 06:54:34:344 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 06:54:34:344 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 06:58:52:391 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 06:58:52:391 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 06:59:34:036 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 06:59:34:036 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:03:53:025 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:03:53:025 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:04:34:658 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 07:04:34:658 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:08:52:257 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:08:52:257 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:09:34:960 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:09:34:960 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:13:53:245 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:13:53:245 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:14:34:456 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:14:34:456 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:18:52:196 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:18:52:196 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:19:35:012 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:19:35:012 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:23:52:962 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:23:52:962 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:24:34:539 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:24:34:539 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:28:52:071 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:28:52:071 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:29:35:018 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 07:29:35:018 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:33:52:776 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:33:52:776 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:34:34:646 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 07:34:34:646 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:38:52:039 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:38:52:039 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:39:34:164 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:39:34:164 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:43:52:169 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:43:52:169 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:44:34:720 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 07:44:34:721 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:48:52:016 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:48:52:016 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:49:34:157 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:49:34:157 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:53:52:684 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:53:52:684 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:54:34:687 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 07:54:34:687 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 07:58:51:998 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 07:58:51:998 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 07:59:34:255 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 07:59:34:255 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:03:53:047 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:03:53:047 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:04:34:778 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:04:34:778 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:08:52:056 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:08:52:056 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:09:34:205 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:09:34:205 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:13:53:118 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:13:53:118 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:14:34:691 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:14:34:691 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:18:52:787 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:18:52:787 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:19:34:249 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:19:34:249 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:23:53:105 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:23:53:105 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:24:34:824 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:24:34:824 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:28:52:231 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:28:52:231 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:29:34:318 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:29:34:318 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:33:52:069 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:33:52:069 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:34:34:862 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 3 times
S Wed Feb 07 2024 08:34:34:862 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:38:52:216 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:38:52:216 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:39:34:305 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 08:39:34:305 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:43:53:032 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:43:53:032 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:44:34:687 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 3 times
S Wed Feb 07 2024 08:44:34:687 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:48:52:177 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:48:52:177 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:49:34:070 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 08:49:34:070 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:53:52:155 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:53:52:155 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:54:34:427 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 08:54:34:427 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 08:58:53:199 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 08:58:53:199 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 08:59:35:013 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 08:59:35:013 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:03:52:323 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:03:52:323 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:04:34:475 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 09:04:34:475 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:08:53:199 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:08:53:199 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:09:34:995 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 09:09:34:995 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:13:52:179 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:13:52:179 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:14:34:302 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 09:14:34:302 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:18:53:346 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:18:53:346 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:19:34:895 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 09:19:34:895 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:23:52:073 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:23:52:073 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:24:34:322 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 09:24:34:322 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:28:52:048 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:28:52:048 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:29:34:841 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 3 times
S Wed Feb 07 2024 09:29:34:841 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:33:52:017 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:33:52:017 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:34:34:216 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 3 times
S Wed Feb 07 2024 09:34:34:216 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:38:52:445 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:38:52:445 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:39:34:801 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 09:39:34:801 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:43:53:104 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:43:53:104 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:44:34:246 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 09:44:34:246 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:48:51:997 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:48:51:997 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:49:34:740 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 09:49:34:740 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:53:52:958 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:53:52:958 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:54:34:119 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 2 times
S Wed Feb 07 2024 09:54:34:119 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 09:57:58:752 (re)load secinfo file /usr/sap/R3T/SYS/global/secinfo, version=2 (17 lines, mode=0)
S Wed Feb 07 2024 09:57:58:752 P TP=* USER=* USER-HOST=local HOST=local
S Wed Feb 07 2024 09:57:58:752 P TP=* USER=* USER-HOST=internal HOST=internal
S Wed Feb 07 2024 09:57:58:752 P USER=* TP=* HOST=local USER-HOST=*
S Wed Feb 07 2024 09:57:58:752 P USER=* TP=* HOST=internal USER-HOST=*
S Wed Feb 07 2024 09:57:58:753 (re)load reginfo file /usr/sap/R3T/D00/data/reginfo, version=2 (34 lines, mode=0)
S Wed Feb 07 2024 09:57:58:753 P TP=Trex* HOST=* CANCEL=* ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=SLD_NUC HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=SLD_NUC HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=IGS.CDM HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=IGS.CDM HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=sapfallback HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=sapfallback HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=SLD_UC HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=SLD_UC HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=TRILLIUM.CONNECTOR HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=TRILLIUM.CONNECTOR HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=VERTEX_M_300 HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=VERTEX_M_300 HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=Trex_CDM_20121009111814 HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=Trex_CDM_20121009111814 HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=SAPphone HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=SAPphone HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=IGS.CDM HOST=127.0.0.1 CANCEL=127.0.0.1 ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=VERTEX_M_300 HOST=10.226.1.132 CANCEL=10.226.1.132 ACCESS=*
S Wed Feb 07 2024 09:57:58:753 P TP=* HOST=internal,local ACCESS=internal,local CANCEL=internal,local
S Wed Feb 07 2024 09:57:58:753 P TP=* HOST=local CANCEL=local ACCESS=local
S Wed Feb 07 2024 09:57:58:753 P TP=* HOST=internal CANCEL=internal ACCESS=internal
S Wed Feb 07 2024 09:57:58:753 (re)load prxyinfo file /usr/sap/R3T/D00/data/prxyinfo (2 lines)
S Wed Feb 07 2024 09:57:58:753 P SOURCE=* DEST=*
S Wed Feb 07 2024 09:58:53:262 reginfo denied server: TP=FERCON_100, HOST=gew-sap17.gew.dom (195.94.71.181) 4 times
S Wed Feb 07 2024 09:58:53:262 reginfo denied server: TP=ELSTER_XML_R3T, HOST=gew-sap17.gew.dom (195.94.71.168)
S Wed Feb 07 2024 09:59:34:675 reginfo denied server: TP=ELSTER_XML_R3T, HOST=GEW-APP42.gew.dom (195.94.71.168) 1 times
S Wed Feb 07 2024 09:59:34:675 reginfo denied server: TP=FERCON_100, HOST=GEW-APP42.gew.dom (195.94.71.181)
S Wed Feb 07 2024 10:01:22:077 (re)load secinfo file /usr/sap/R3T/SYS/global/secinfo, version=2 (17 lines, mode=0)
S Wed Feb 07 2024 10:01:22:077 P TP=* USER=* USER-HOST=local HOST=local
S Wed Feb 07 2024 10:01:22:077 P TP=* USER=* USER-HOST=internal HOST=internal
S Wed Feb 07 2024 10:01:22:077 P USER=* TP=* HOST=local USER-HOST=*
S Wed Feb 07 2024 10:01:22:077 P USER=* TP=* HOST=internal USER-HOST=*
S Wed Feb 07 2024 10:01:22:077 (re)load reginfo file /usr/sap/R3T/D00/data/reginfo, version=2 (34 lines, mode=0)
S Wed Feb 07 2024 10:01:22:077 P TP=Trex* HOST=* CANCEL=* ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=SLD_NUC HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=SLD_NUC HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=IGS.CDM HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=IGS.CDM HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=sapfallback HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=sapfallback HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=SLD_UC HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=SLD_UC HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=TRILLIUM.CONNECTOR HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=TRILLIUM.CONNECTOR HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=VERTEX_M_300 HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=VERTEX_M_300 HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=Trex_CDM_20121009111814 HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=Trex_CDM_20121009111814 HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=SAPphone HOST=local CANCEL=local ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=SAPphone HOST=internal CANCEL=internal ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=IGS.CDM HOST=127.0.0.1 CANCEL=127.0.0.1 ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=VERTEX_M_300 HOST=10.226.1.132 CANCEL=10.226.1.132 ACCESS=*
S Wed Feb 07 2024 10:01:22:077 P TP=* HOST=internal,local ACCESS=internal,local CANCEL=internal,local
S Wed Feb 07 2024 10:01:22:077 P TP=* HOST=local CANCEL=local ACCESS=local
S Wed Feb 07 2024 10:01:22:077 P TP=* HOST=internal CANCEL=internal ACCESS=internal
S Wed Feb 07 2024 10:01:22:077 (re)load prxyinfo file /usr/sap/R3T/D00/data/prxyinfo (5 lines)
S Wed Feb 07 2024 10:01:22:077 P SOURCE=* DEST=*

S Wed Feb 07 2024 10:01:22:077 P SOURCE=local,internal DEST=*
S Wed Feb 07 2024 10:01:22:077 D SOURCE=* DEST=*

Does anyone have an answer for me to solve this issure PLEASE!
@JoeGoerlich 

Labels in this area