Following https://access.redhat.com/solutions/30564
Edit the file /etc/iproute2/rt_tables and add routes for the four different NICs:
#
# reserved values
#
255 local
254 main
253 default
Following https://access.redhat.com/solutions/30564
Edit the file /etc/iproute2/rt_tables and add routes for the four different NICs:
#
# reserved values
#
255 local
254 main
253 default
| ## Keys | |
| ```sh | |
| [root@sugwg-scitokens conf]# openssl pkcs12 -export -out hostcert.pkcs12 -in hostcert.pem -inkey hostkey.pem | |
| Enter Export Password: | |
| Verifying - Enter Export Password: | |
| [root@sugwg-scitokens conf]# keytool -genkey -keyalg RSA -alias empty -keystore keystore.jks | |
| Enter keystore password: | |
| Re-enter new password: | |
| What is your first and last name? |
| # max_iterations sleep_time | |
| 10 5 |
| # max_iterations sleep_time | |
| 5 60 |
| universe = vanilla | |
| output = scitokens_test.$(cluster).$(process).out | |
| error = scitokens_test.$(cluster).$(process).err | |
| log = scitokens_test.$(cluster).log | |
| executable = test_stash.sh | |
| transfer_executable = True | |
| request_memory = 100M |
| #!/bin/bash -v | |
| # read from xrootd | |
| python /home/dbrown/bin/stashcp.py --cache="http://sugwg-scitokens.phy.syr.edu:8000" --token=${_CONDOR_CREDS}/scitoken.use --debug stash:///osg/sugwg/user/dbrown/hello.txt `pwd`/hello.txt | |
| cat hello.txt | |
| # create a test file | |
| TMPFILE=`uuidgen` | |
| echo "Hello, World! I am ${TMPFILE}" > ${TMPFILE}.in |
| #! /bin/bash -v | |
| set -x | |
| pycbc_config_file=${1} | |
| pycbc_output_file=${2} | |
| echo "Using ${pycbc_config_file} as configuration file" | |
| echo "Writing output to ${pycbc_output_file}" |