Edge for Private Cloud v4.18.01
Edge で SAML を有効にしたら、Basic 認証を無効にできます。ただし、 Basic 認証を無効にする:
- システム管理者を含むすべての Edge ユーザーが SAML に追加されていることを確認してください IdP。
- Edge UI での SAML 認証と Edge 管理を十分にテストしていることを確認してください API
- API BaaS も使用している場合は、API BaaS で SAML を構成してテストします。API BaaS で SAML を有効にするをご覧ください。
- Developer Services ポータルを使用している場合は、ポータルで SAML を構成してテストし、 ポータルが Edge に接続できることを確認します。詳細については、Terraform で Developer Services ポータルで SAML を使用して Edge と通信するをご覧ください。
現在のセキュリティ プロファイルの表示
Edge のセキュリティ プロファイルを表示して現在の構成を確認し、 現在、Basic 認証と SAML が有効になっています。Edge で次の Edge Management API 呼び出しを使用する Management Server を使用して、Edge で使用されている現在のセキュリティ プロファイルを表示します。
> curl -H "accept:application/xml" http://localhost:8080/v1/securityprofile -u sysAdminEmail:pWord
SAML をまだ構成していない場合、レスポンスは次のようになります。つまり、Basic 認証は enabled:
<SecurityProfile enabled="true" name="securityprofile"> <UserAccessControl enabled="true"> </UserAccessControl> </SecurityProfile>
すでに SAML を有効にしている場合は、出力に <ssoserver> タグが表示されます。
<SecurityProfile enabled="true" name="securityprofile"> <UserAccessControl enabled="true"> <SSOServer> <BasicAuthEnabled>true</BasicAuthEnabled> <PublicKeyEndPoint>/token_key</PublicKeyEndPoint> <ServerUrl>http://35.197.37.220:9099</ServerUrl> </SSOServer> </UserAccessControl> </SecurityProfile>
SAML が有効になっているバージョンには、 <BasicAuthEnabled>true</BasicAuthEnabled>: Basic 認証が 引き続き有効です。
Basic 認証を無効にする
Basic を無効にするには、Edge 管理サーバーで次の Edge 管理 API 呼び出しを使用します 認証前のセクションで返された XML オブジェクトをペイロードとして渡していることに注意してください。唯一の 違いは、 <BasicAuthEnabled>false</BasicAuthEnabled>:
> curl -H "Content-Type: application/xml" http://localhost:8080/v1/securityprofile -u sysAdminEmail:pWord -d '<SecurityProfile enabled="true" name="securityprofile"> <UserAccessControl enabled="true"> <SSOServer> <BasicAuthEnabled>false</BasicAuthEnabled> <PublicKeyEndPoint>/token_key</PublicKeyEndPoint> <ServerUrl>http://35.197.37.220:9099</ServerUrl> </SSOServer> </UserAccessControl> </SecurityProfile>'
Basic 認証を無効にした後は、Basic 認証の認証情報を渡す Edge Management API 呼び出し 次のエラーが返されます。
<Error> <Code>security.SecurityProfileBasicAuthDisabled</Code> <Message>Basic Authentication scheme not allowed</Message> <Contexts/> </Error>
Basic 認証を再度有効にする
なんらかの理由で Basic 認証を再度有効にする必要がある場合は、次の手順を行う必要があります。
注意: Basic 認証を再度有効にする一環で、一時的に無効にする必要があります。 すべての認証が Edge 上で行われます。
- 任意の Edge ZooKeeper ノードにログインします。
- 次の bash スクリプトを実行して、すべてのセキュリティをオフにします。
注意: この手順により、SAML を含む Edge のすべての認証が無効になります。
#!/bin/bash
/opt/apigee/apigee-zookeeper/bin/zkCli.sh -server localhost:2181 <<EOF/system/securityprofile を設定して <SecurityProfile></SecurityProfile>終了
時点
出力は次のようになります。
localhost:2181 に接続する
ZooKeeper へようこそ。
JLine サポートが有効です
WATCHER::
WatchedEvent の状態:SyncConnected type:None path:null[zk: localhost:2181(CONNECTED) 0] /system/securityprofile <SecurityProfile></SecurityProfile> を設定しますcZxid = 0x89...
[zk: localhost:2181(CONNECTED) 1] quit
終了しています... - Basic 認証と SAML 認証を再度有効にします。
>curl -H "Content-Type: application/xml"
マイページ 再び Basic 認証を使用できるようになりました。
http://localhost:8080/v1/securityprofile -u sysAdminEmail:pWord -d
'<SecurityProfile enabled="true"name="securityprofile">
<ph type="x-smartling-placeholder"></ph> <UserAccessControl enabled="true">
<ph type="x-smartling-placeholder"></ph> <SSOServer>
<BasicAuthEnabled>true</BasicAuthEnabled>
<ph type="x-smartling-placeholder"></ph> <PublicKeyEndPoint>/token_key</PublicKeyEndPoint>
<ph type="x-smartling-placeholder"></ph> <ServerUrl>http://35.197.37.220:9099</ServerUrl>
<ph type="x-smartling-placeholder"></ph> </SSOServer>
</UserAccessControl>
</SecurityProfile>