> For the complete documentation index, see [llms.txt](https://docs.targitas.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.targitas.com/targitas-kullanim-rehberi/network-rehberi/pppoe-interface-olusturma.md).

# PPPoE Interface Oluşturma

OSI (Open Systems Interconnection-Açık Sistemler Bağlantısı) referans modelinin 2. katmanı olan veri bağlantı katmanı (Data Link Layer) protokollerinden birisi olan PPP (Point to Point Protocol-Noktadan Noktaya Bağlantı) üzerinden iki network noktasının iletişim kurması mümkündür. PPPoE( Point to Point Protocol Over Ethernet - Ethernet Üzerinden Noktadan Noktaya İletişim) protokolü ile Targitas oldukça hızlı bir şekilde bir modeme bağlanabilmektedir.

Targitas Web arayüzünde [<mark style="color:blue;">**Configuration -> Network -> PPPoE**</mark>](https://docs.targitas.com/configuration/network/interface#pppoe-interface) arayüzünde ilgili konfigürasyon işlemleri gerçekleştirilebilir

<figure><img src="/files/Xc1qdEkhmHMiiScJumo9" alt=""><figcaption></figcaption></figure>

| ID                 | PPPoE Interface için sayı değeri olan bir ID belirtilmelidir. Bu değer daha sonrasında değiştirilemeyecektir.       |
| ------------------ | ------------------------------------------------------------------------------------------------------------------- |
| Service Short Name | PPPoE Interface için bir isim belirtilmelidir.                                                                      |
| Interface          | PPPoE Interface dönüşümün gerçekleştirileceği fiziksel port belirlenmelidir. Sadece bir Interface seçilebilir.      |
| MTU                | PPPoE Interface için varsayılan MTU değeri 1492'dir. Örneğimizde varsayılan değeri kullanmayı tercih ettik.         |
| Username           | PPPoE dönüştürme işlemi için gerekli olan ISP tarafından sağlanan kullanıcı bilgisini belirtiyoruz.                 |
| Passphrase         | ISP tarafından sağlanan parola bilgisini belirtiyoruz.                                                              |
| Protocol           | Örneğimizde varsayılan protokol olan PAP değiştirilmemiştir. Daha güvenli olan CHAP protokolü de tercih edilebilir. |
| Default            | Default Gateway konfigürasyonu için seçilmesi gereklidir.                                                           |
| Status             | PPPoE'nin aktif çalışabilmesi için seçilmesi gereklidir.                                                            |

&#x20;Yukarıda PPPoE Interface oluşturmanın CLI üzerinden konfigürasyonu da aşağıda bulunmaktadır:

```
!
interface pppoe 1
 parent ethernet 1/1/1
 name Document_PPPoE
 get-default-gw
 authproto pap
 authname admin@ttnet.com
 authkey ******
 deploy
!
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.targitas.com/targitas-kullanim-rehberi/network-rehberi/pppoe-interface-olusturma.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
