# CUPS ClientNew Page

Under the cups client we need to prevent the discovery of networked printers in order to only use the new print server. Bonjour may also need to be disabled on the printer itself. It doesn't always stop the printer from adding. However, this is the first measure. Edit the file.

```bash
/etc/cups/cups-browsed.conf
```

Find

```bash
BrowseRemoteProtocols dnssd cups
```

Replace with

```bash
BrowseRemoteProtocols none
BrowseProtocols none
```

Edit the file.

```bash
/etc/cups/cupsd.conf
```

Find

```bash
Browsing On
BrowseLocalProtocols dnssd
```

Replace with

```bash
Browsing No
BrowseLocalProtocols none
```

Restart CUPS service.

```bash
systemctl restart cups
```