-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Outgoing transfer #3
Open
moyjunior
wants to merge
6
commits into
develop
Choose a base branch
from
outgoing-transfer
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,52 @@ | ||
# Transfert sortant | ||
|
||
// TODO: Expliquer de manière général la notion de lock/Unlock, la notion de authInfo et à quoi ça sert. | ||
// TODO: Expliquer le workflow générique des transferts sortants (ne pas oublier de bien préciser que pour le cctlds, ça peut différer) | ||
On parle de transfert sortant (ou outgoing transfer) lorsqu'un client souhaite déléguer la gestion de son nom de domaine vers un autre registrar. Les instructions suivantes décrivent la manière la plus courante de procéder à ce transfert. Cependant, cette procédure peut varier pour quelques ccTLDs comme .lu, .uk, .hk, etc... | ||
Dans ce cas, il convient de se référer à la documentation du registre. | ||
|
||
// TODO: Expliquer comment via api, unlock son domaine afin de récupérer son code authInfo | ||
## Domaine lock | ||
|
||
Un domain lock est une sécurité permettant d'éviter que votre domaine soit la cible de tentatives de transfert vers un autre registrar. | ||
|
||
Cela signifie que si cette option est activée sur votre nom de domaine, ce dernier ne peut être transféré sans avoir été unlocked au préalable. | ||
|
||
Vous pouvez vérifier dans quel état se trouve votre nom de domaine en utlisant la route suivante : | ||
|
||
[`GET /domain/{serviceName}`](https://api.ovh.com/console/#/domain/%7BserviceName%7D~GET) | ||
|
||
::: details Response | ||
|
||
```json | ||
moyjunior marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
"transferLockStatus": "locked", | ||
"parentService": null, | ||
"nameServerType": "hosted", | ||
"offer": "gold", | ||
"whoisOwner": "12345678", | ||
"owoSupported": true, | ||
"lastUpdate": "2022-03-10T14:00:40+01:00", | ||
"glueRecordIpv6Supported": true, | ||
"domain": "xxx.ovh", | ||
"glueRecordMultiIpSupported": true, | ||
"dnssecSupported": true | ||
} | ||
``` | ||
|
||
::: | ||
|
||
Pour mettre votre nom de domaine dans un état unlocked, utilisez la même route avec une méthode `PUT` : | ||
|
||
[`PUT /domain/{serviceName}`](https://api.ovh.com/console/#/domain/%7BserviceName%7D~PUT) en ajoutant le `transferLockStatus` à 'unlocked'. | ||
Les actions sur ces routes ne sont pas instantanées, c'est pourquoi en réexécutant un [`GET /domain/{serviceName}`](https://api.ovh.com/console/#/domain/%7BserviceName%7D~GET), vous pouvez voir apparaître un `transferLockStatus` à `unlocking` ou `locking`. | ||
|
||
|
||
## Authcode | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. pareil : code d'authentification ? ( |
||
|
||
Après avoir unlocked votre domaine, il vous faut un authcode afin de garantir que vous en avez la propriété, pour pouvoir procéder au transfert sortant. Ce code sera à fournir à votre nouveau registrar. | ||
|
||
La route suivante vous permet de le récupérer : | ||
|
||
[`GET /domain/{serviceName}/authInfo`](https://api.ovh.com/console/#/domain/%7BserviceName%7D/authInfo~GET) | ||
|
||
Votre nouveau registrar procédera alors au transfert. | ||
|
||
NB : Pour l'extension .uk, se référer à la [`documentation`](https://docs.ovh.com/gb/en/domains/web_hosting_how_to_transfer_a_couk_domain_name/) dédiée. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On en a déjà parlé mais j'aime vraiment pas cet anglicisme…
J'aurais utilisé « verrouillé / déverrouillé », quitte à dire que ça correspond au statut
locked/unlocked
sur l'API.Faut voir si je suis le seul à penser ça ;-)